在我的项目中,我将vue-cli与webpack-simple模板一起使用。一切都OK,但是我有下一个问题。在npm run build之后,我需要通过ctrl + f5刷新我的浏览器页面。有可能避免这种情况吗?我确定是因为build.js文件存储在浏览器缓存中。
我试图将唯一的哈希与webpack.config.js中build.js的文件名结合在一起,它会生成build-hashcode.js和build-hashcode.js.map,但我不知道如何包括该构建。我的index.html中的js。
//webpack.config.js
module.exports = {
entry: './src/main.js',
output: {
path: path.resolve(__dirname, './dist'),
publicPath: 'dist/',
filename: 'build-[hash].js'
},