这是webpack.config.js的配置 "webpack": "^4.31.0"module.exports = { entry:{ app:'./src/index.js' }, output:{ filename:'bundle.js' }}命令行执行的:webpack --config webpack.config.js为什么我生成的代码是混淆和压缩的代码。怎么做才能让生成的文件不做混淆??
1 回答
POPMUISE
TA贡献1765条经验 获得超5个赞
module.exports = {
mode:'development',
entry:{
app:'./src/index.js'
},
output:{
filename:'bundle.js'
}
}
添加回答
举报
0/150
提交
取消