You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
542 B
20 lines
542 B
module.exports = {
|
|
publicPath: '/',
|
|
assetsDir: 'static',
|
|
lintOnSave: true,
|
|
productionSourceMap: false,
|
|
css: {
|
|
sourceMap: false
|
|
},
|
|
|
|
// 打包体积大报的错
|
|
configureWebpack: (config) => {
|
|
if (process.env.NODE_ENV === 'production') {// 为生产环境修改配置...
|
|
config.mode = 'production';
|
|
config["performance"] = {//打包文件大小配置
|
|
"maxEntrypointSize": 10000000,
|
|
"maxAssetSize": 30000000
|
|
}
|
|
}
|
|
}
|
|
};
|
|
|