123456789101112131415 |
- module.exports = {
- transpileDependencies: ['@dcloudio/uni-ui'],
- configureWebpack: {
- plugins: [
- new CompressionWebpackPlugin({
- filename: "[path][base].gz",
- algorithm: "gzip",
- test: /\.js$/,
- threshold: 5000,
- minRatio: 0.8,
- exclude: /node_modules/,
- })
- ]
- }
- }
|