Angular 5始终加载缓存版本

时间:2018-02-20 11:57:50

标签: angular angular2-template angular5

Angular 5 Web App - 始终加载缓存版本或旧版本我应该按ctrl + f5来获取新版本并清除缓存。 我找到了这个解决方案

@Component({
   selector: 'csj-app',
   templateUrl: 'app/component/app.component.html?v=1.0',
   styleUrls: ['style/app.css?v=1.0']
})

但是当我使用aot

构建时,我收到此错误
ERROR in : Couldn't resolve resource app.component.html?v=1 

1 个答案:

答案 0 :(得分:1)

删除网址参数。 加 --output-hashing=all 到您的构建脚本。

"build": "ng build --output-hashing=all"

这将停止加载缓存版本。