vue.config.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. var CompressionPlugin = require('compression-webpack-plugin');
  2. const TerserPlugin = require('terser-webpack-plugin');
  3. module.exports = {
  4. publicPath: process.env.NODE_ENV === 'production'
  5. ? '/'
  6. : '/',
  7. outputDir: 'dist',
  8. lintOnSave: false,
  9. devServer: {
  10. // public: 'http://10.113.248.92:8080',
  11. hot: true,
  12. disableHostCheck: true,
  13. // proxy: {
  14. // '/api': {
  15. // target: 'https://nczc.hnoa.cn/',
  16. // ws: true,
  17. // changeOrigin: true,
  18. // pathRewrite: {
  19. // '^/api': ''
  20. // }
  21. // }
  22. // }
  23. // proxy: {
  24. // '/api': {
  25. // target: 'http://cognitive.wistcm.com:10086/',
  26. // ws: true,
  27. // changeOrigin: true,
  28. // pathRewrite: {
  29. // '^/api': ''
  30. // }
  31. // }
  32. // }
  33. },
  34. productionSourceMap: false,
  35. configureWebpack: {
  36. plugins: [
  37. new CompressionPlugin({
  38. algorithm: 'gzip', // 使用gzip压缩
  39. test: /\.js$|\.css$/, // 匹配文件名
  40. filename: '[path][base].gz', // 压缩后的文件名(保持原文件名,后缀加.gz)
  41. minRatio: 1, // 压缩率小于1才会压缩
  42. threshold: 10240, // 对超过10k的数据压缩
  43. deleteOriginalAssets: false, // 是否删除未压缩的源文件,谨慎设置,如果希望提供非gzip的资源,可不设置或者设置为false(比如删除打包后的gz后还可以加载到原始资源文件)
  44. }),
  45. ],
  46. optimization: {
  47. // 生产环境移除console和debugger
  48. minimizer: [
  49. new TerserPlugin({
  50. terserOptions: {
  51. ecma: undefined,
  52. warnings: false,
  53. parse: {},
  54. compress: {
  55. drop_console: true,
  56. drop_debugger: true,
  57. pure_funcs: ['console.log']
  58. }
  59. },
  60. }),
  61. ]
  62. }
  63. }
  64. }