Html ファイルのキャッシュを回避しようとしています。rev&rev-replaceで作業しようとしました。その結果、ファイル名のみが変更されますが、stateprovider 内のファイルの参照は変更されないため、ファイルが見つからないというエラーが発生します。
これは、stateProvider を持つ config.js の一部です。
$stateProvider .state('landingPage', { url: "/home", templateUrl: "views/landingPage/landingPage.html", })
これは私のgulpファイルの一部です:
gulp.task('copyHtml', ['copyAll','useRef'], function () {
return gulp.src('app/views/**/*.html')
.pipe(htmlmin({ collapseWhitespace: true, removeComments: true }))
.pipe(rev())
.pipe(revReplace())
.pipe(gulp.dest('dist/views'));
});
config.js のファイル参照を変更するにはどうすればよいですか?
コンテンツはモバイル (android の chrome) でのみ更新されません。html ファイルの名前を手動で、および stateProvider で変更しようとしましたが、どちらも機能しません。
ブラウザのキャッシュを回避するにはどうすればよいですか???
ありがとう