赞
踩
taro 版本3.6.16
生产模式小程序打包
使用taro build --type weapp
在config/dev.js中加入以下代码后,运行yarn dev:weapp后,打包体积只有4+m
```javascript mini: { webpackChain: (chain, webpack) => { chain.merge({ plugin: { install: { plugin: require('terser-webpack-plugin'), args: [ { terserOptions: { compress: true, // 默认使用terser压缩 // mangle: false, keep_classnames: true, // 不改变class名称 keep_fnames: true, // 不改变函数名称 }, }, ], }, }, }) } },
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。