ng build --aot --prod生成文件报错
Cannot read property 'create' of undefined when building with --prod or --aot
解决方案:改变zone.js的版本号为0.8.5;
然后删除dist ng_modules,然后重装下就可以正常使用了。
/*更新angular-cli*/
npm uninstall -g angular-cli
npm cache clean
npm install -g @angular/cli@latest
/*更新引用
rm -rf node_modules dist
npm uninstall --save-dev angular-cli
npm install --save-dev @angular/cli@latest
npm install
ng update
引用来源:https://github.com/angular/angular-cli/issues/6036