webpack 传入和捕获自定义参数(env)
传入
在命令行中输入 --env.变量名=值
"scripts": {
"bp": "webpack --config build/webpack.config.pro.js --env.type=print"
},
捕获
//webpack.config.pro.js 文件中
module.exports = (env = {}) => {
const isPrint = env['type'] == 'print'
}
Comments