1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- var CompressionPlugin = require('compression-webpack-plugin');
- const TerserPlugin = require('terser-webpack-plugin');
- module.exports = {
- publicPath: process.env.NODE_ENV === 'production'
- ? '/'
- : '/',
- outputDir: 'dist',
- lintOnSave: false,
- devServer: {
- // public: 'http://10.113.248.92:8080',
- hot: true,
- disableHostCheck: true,
- // proxy: {
- // '/api': {
- // target: 'https://nczc.hnoa.cn/',
- // ws: true,
- // changeOrigin: true,
- // pathRewrite: {
- // '^/api': ''
- // }
- // }
- // }
- // proxy: {
- // '/api': {
- // target: 'http://cognitive.wistcm.com:10086/',
- // ws: true,
- // changeOrigin: true,
- // pathRewrite: {
- // '^/api': ''
- // }
- // }
- // }
- },
- productionSourceMap: false,
- configureWebpack: {
- plugins: [
- new CompressionPlugin({
- algorithm: 'gzip', // 使用gzip压缩
- test: /\.js$|\.css$/, // 匹配文件名
- filename: '[path][base].gz', // 压缩后的文件名(保持原文件名,后缀加.gz)
- minRatio: 1, // 压缩率小于1才会压缩
- threshold: 10240, // 对超过10k的数据压缩
- deleteOriginalAssets: false, // 是否删除未压缩的源文件,谨慎设置,如果希望提供非gzip的资源,可不设置或者设置为false(比如删除打包后的gz后还可以加载到原始资源文件)
- }),
- ],
- optimization: {
- // 生产环境移除console和debugger
- minimizer: [
- new TerserPlugin({
- terserOptions: {
- ecma: undefined,
- warnings: false,
- parse: {},
- compress: {
- drop_console: true,
- drop_debugger: true,
- pure_funcs: ['console.log']
- }
- },
- }),
- ]
- }
- }
- }
|