如何禁用JavaScript文件的版本控制?现在我看到了
<script type="text/javascript" src=".../modal-ver-1455723568000.js"></script>
但我想要
<script type="text/javascript" src=".../modal.js"></script>
否则我必须一次又一次地在Chrome devtools中设置断点。
感谢。
答案 0 :(得分:2)
在YourApplication#init()
添加
if (usesDevelopmentMode()) {
// to disable the timestamps in the names
getResourceSettings().setResourceCachingStrategy(
NoopResourceCachingStrategy.INSTANCE);
// to disable caching in the browser
getResourceSettings().setDefaultCacheDuration(Duration.NONE);
}