- webpack --env.production
module.exports = () =>{
if(env && env.production){
}
}
- webpack --env production
module.exports = () =>{
if(production){
}
}
module.exports = () =>{
if(env && env.production){
}
}
module.exports = () =>{
if(production){
}
}