运行dev报错npx webpack-dev-server
解决方法
module.exports = {
output: {
filename: this.mode === 'production' ? 'js/[name].[contenthash:10].js' : 'js/[name].[hash:10].js',
},
}
微信扫一扫
npx webpack-dev-server
解决方法
module.exports = {
output: {
filename: this.mode === 'production' ? 'js/[name].[contenthash:10].js' : 'js/[name].[hash:10].js',
},
}
相关推荐