UNPKG

423 BJavaScriptView Raw
1module.exports = {
2 env: {
3 NODE_ENV: '"production"'
4 },
5 defineConstants: {
6 },
7 mini: {},
8 h5: {
9 /**
10 * 如果h5端编译后体积过大,可以使用webpack-bundle-analyzer插件对打包体积进行分析。
11 * 参考代码如下:
12 * webpackChain (chain) {
13 * chain.plugin('analyzer')
14 * .use(require('webpack-bundle-analyzer').BundleAnalyzerPlugin, [])
15 * }
16 */
17 }
18}