Open giscafer opened 7 years ago
Unique identifier ng build --prod
https://github.com/angular/angular-cli/issues/9165
如果以上问题解决不了你的方案,可以自己动态在'[name].bundle.js?[hash]
文件后加hash版本号。
写了个node脚本在打包后正则匹配替换dist/index.html
gist code: https://gist.github.com/giscafer/72b9c73493daa13fefb5f26243c63f07
AOT 编译
相关文章
如何评价 angular 2 中的 AoT?
Angular 预编译(AOT)
预 (AOT) 编译器
JIT: Just-in-Time Compiler AOT:Ahead-of-Time Compiler
Issues
ng build --prod -aot
构建的时候,工程中未使用到的components会报错,如下;删除未引用的文件即可解决方案
构建如果报错JavaScript heap out of memory
https://github.com/angular/angular/issues/12184
package.json
设置node内存后执行"build-aot": "node --max_old_space_size=2192 node_modules/@angular/cli/bin/ng build --aot --prod"
AngularUniversal 后端模板渲染
AngularUniversal : https://universal.angular.io/
相关文章
http://www.jianshu.com/p/81e8472376cc#
http://www.jianshu.com/p/304bb0728e7c