vue.config.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* eslint-disable @typescript-eslint/camelcase */
  2. // gzip 压缩代码
  3. const CompressionPlugin = require("compression-webpack-plugin");
  4. // 打包分析
  5. const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
  6. // terser-webpack-plugin 可不引入, @vue/cli-service 中已经引入了terser-webpack-plugin
  7. // const TerserPlugin = require('terser-webpack-plugin')
  8. module.exports = {
  9. devServer: {
  10. open: true,
  11. proxy: {
  12. "/labsl": {
  13. target: "http://60.205.177.43:28888",
  14. changeOrigin: true,
  15. secure: false,
  16. },
  17. "/meiku": {
  18. target: "http://60.205.177.43:28888",
  19. changeOrigin: true,
  20. secure: false,
  21. },
  22. "/datacenter": {
  23. target: "http://60.205.177.43:28888",
  24. changeOrigin: true,
  25. secure: false,
  26. },
  27. "/datacenter4": {
  28. target: "http://60.205.177.43:8080",
  29. changeOrigin: true,
  30. secure: false,
  31. },
  32. "/equip-componnet": {
  33. target: "http://60.205.177.43:28888",
  34. changeOrigin: true,
  35. secure: false,
  36. },
  37. "/equip-component4": {
  38. target: "http://60.205.177.43:8080",
  39. changeOrigin: true,
  40. secure: false,
  41. },
  42. // 图片服务器
  43. "/image-service": {
  44. target: "http://adm.sagacloud.cn",
  45. changeOrigin: true,
  46. secure: false,
  47. },
  48. },
  49. // 关闭esline
  50. overlay: {
  51. warnings: false,
  52. errors: false,
  53. },
  54. },
  55. chainWebpack: (config) => {
  56. config.output.filename("static/js/[name].[hash].js").end();
  57. config.output.chunkFilename("static/js/[name].[hash].js").end();
  58. },
  59. lintOnSave: false,
  60. publicPath: "/persagyPlan",
  61. // 打包名称
  62. outputDir: "persagyPlan",
  63. // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
  64. assetsDir: "static",
  65. transpileDependencies: [
  66. "@persagy-web", // 指定对第三方依赖包进行babel-polyfill处理
  67. ],
  68. productionSourceMap: false,
  69. // CSS 相关选项
  70. css: {
  71. // 将组件内的 CSS 提取到一个单独的 CSS 文件 (只用在生产环境中)
  72. extract: true,
  73. },
  74. // 配置webpack
  75. configureWebpack: (config) => {
  76. // 生成环境,删除console.log和debugger
  77. if (process.env.VUE_Plan_RealEnv === "production") {
  78. config.optimization.minimizer[0].options.terserOptions.compress.drop_console = true; //删除console
  79. config.optimization.minimizer[0].options.terserOptions.compress.drop_debugger = true; //删除 debugger
  80. config.optimization.minimizer[0].options.terserOptions.compress.pure_funcs = ["console.log"]; //删除
  81. }
  82. const plugins = [
  83. // 压缩代码
  84. new CompressionPlugin({
  85. test: /\.js$|\.html$|\.css$/, // 匹配文件名
  86. threshold: 10240, // 对超过10k的数据压缩
  87. deleteOriginalAssets: process.env.NODE_ENV === "production", // false 不删除源文件 true 删除源文件
  88. }),
  89. ];
  90. // 生产环境打包分析体积 命令 npm run build --report 或者 yarn build --report
  91. if (process.env.NODE_ENV === "production" && (process.env.npm_config_report || process.env.npm_config_argv.indexOf("--report") !== -1)) {
  92. plugins.push(new BundleAnalyzerPlugin());
  93. }
  94. return {
  95. plugins,
  96. };
  97. },
  98. // chainWebpack:config =>{
  99. // config.module.rule('svg-sprite')
  100. // .use('svgo-loader')
  101. // .loader('svgo-loader')
  102. // }
  103. };