vue.config.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. const path = require("path");
  2. // 引入打包分析文件
  3. const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
  4. // 引入Gzip压缩文件
  5. const CompressionPlugin = require("compression-webpack-plugin");
  6. // 引入js打包工具
  7. const UglifyJsPlugin = require("uglifyjs-webpack-plugin");
  8. const MonacoWebpackPlugin = require("monaco-editor-webpack-plugin");
  9. module.exports = {
  10. outputDir:'hz_crm_web',
  11. lintOnSave: false,
  12. publicPath: process.env.NODE_ENV === "production" ? "/" : "/",
  13. runtimeCompiler: true,
  14. productionSourceMap: false, //关闭生产环境下的SourceMap映射文件
  15. chainWebpack: (config) => {
  16. config.resolve.alias
  17. .set("scss_vars", "@/styles/vars.scss")
  18. .set("index_scss", "@/styles/index.scss")
  19. .set("api", "@/api")
  20. .set("utils", "@/utils")
  21. .set("components", "@/components")
  22. .set("common", "@/common");
  23. config.resolve.extensions.add(".js").add(".vue").add(".json");
  24. config.externals = {
  25. // vue: "Vue",
  26. echarts: "echarts",
  27. };
  28. },
  29. configureWebpack: (config) => {
  30. const pluginsPro = [];
  31. pluginsPro.push(
  32. new CompressionPlugin({
  33. algorithm: "gzip",
  34. test: /\.js$|\.html$|\.css$/, // 匹配文件名
  35. minRatio: 0.8, // 压缩率小于1才会压缩
  36. threshold: 10240, // 对超过10k的数据压缩
  37. deleteOriginalAssets: false, // 是否删除未压缩的源文件,谨慎设置,如果希望提供非gzip的资源,可不设置或者设置为false(比如删除打包后的gz后还可以加载到原始资源文件)
  38. })
  39. );
  40. pluginsPro.push(
  41. // js文件压缩
  42. new UglifyJsPlugin({
  43. uglifyOptions: {
  44. compress: {
  45. drop_debugger: true,
  46. drop_console: true, //生产环境自动删除console
  47. pure_funcs: ["console.log"], //移除console
  48. },
  49. },
  50. sourceMap: false,
  51. parallel: true, //使用多进程并行运行来提高构建速度。默认并发运行数:os.cpus().length - 1。
  52. })
  53. );
  54. if (process.env.NODE_ENV === "production") {
  55. config.plugins = [...config.plugins, ...pluginsPro];
  56. }
  57. },
  58. devServer: {
  59. port: "8080",
  60. open: true,
  61. proxy: {
  62. "/adminapi": {
  63. target: "http://8.136.199.33:7777",
  64. changeOrigin: true, //允许跨域
  65. pathRewrite: {
  66. "^/adminapi": "/adminapi",
  67. },
  68. },
  69. },
  70. },
  71. };