Usage of watch parameter in eject command of Angular CLI -
does know how use --watch
parameter of eject
command in angular cli? trying watch dist folder after building application , want ensure in right path. below steps have followed:
- eject cli using
ng eject --aot --prod
- set
build
script ofpackage.json
webpack --config webpack.prod.config.js --watch
- execute command line
npm run build
even if have not used --watch
parameter during ejection, folder seems watched correctly.
Comments
Post a Comment