提交 e47e7cd2 authored 作者: lihuihui's avatar lihuihui

打包报错(图片太大超出文件限制)

上级 737e2307
......@@ -13,5 +13,26 @@ module.exports = {
target: 'https://alumni2.ezijing.com'
}
}
},
configureWebpack: {
//关闭 webpack 的性能提示
performance: {
hints:false
},
//或者
//警告 webpack 的性能提示
performance: {
hints:'warning',
//入口起点的最大体积
maxEntrypointSize: 50000000,
//生成文件的最大体积
maxAssetSize: 30000000,
//只给出 js 文件的性能提示
assetFilter: function(assetFilename) {
return assetFilename.endsWith('.js');
}
}
}
}
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论