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
答案 0 :(得分:1)
删除网址参数。
加
--output-hashing=all
到您的构建脚本。
"build": "ng build --output-hashing=all"
这将停止加载缓存版本。