Understanding React deployment – Bartosz Szczeciński – Medium
中出现了:
cache busting
缓存破解
就是知道:
对于浏览器缓存了(js,html)等内容时
对于用户是不太懂如何去清除缓存的
所以才有对应的技术去避免此问题:
cache busting
缓存破解
做法是:
给文件名加上hash值
对应着react中的配置就是:
module.exports = { // base config output: { filename: “[name].[hash].js” } } |