فهرست منبع

修改配置文件

空白格 2 سال پیش
والد
کامیت
5b170d6cc0
2فایلهای تغییر یافته به همراه29 افزوده شده و 10 حذف شده
  1. 2 0
      .gitignore
  2. 27 10
      vue.config.js

+ 2 - 0
.gitignore

@@ -1,6 +1,8 @@
 .DS_Store
 node_modules
 /dist
+/test-dist
+/prod-dist
 .history
 
 

+ 27 - 10
vue.config.js

@@ -1,11 +1,13 @@
-const { defineConfig } = require('@vue/cli-service')
-const port = 9010
-const name = '贵州退役军人教育培训'
+const { defineConfig } = require("@vue/cli-service");
+const { resolve } = require("path");
+const port = 9010;
+const name = "贵州退役军人教育培训";
 module.exports = defineConfig({
   transpileDependencies: true,
   lintOnSave: false,
+  outputDir: process.env.ENV + "-dist",
   devServer: {
-    host: '0.0.0.0',
+    host: "0.0.0.0",
     port,
     proxy: {
       // 开发模式请求基础api反代理
@@ -13,9 +15,24 @@ module.exports = defineConfig({
         target: `https://wx.hw.hongweisoft.com/veterans`,
         changeOrigin: true,
         pathRewrite: {
-          ['^' + process.env.VUE_APP_BASE_API]: ''
-        }
-      }
-    }
-  }
-})
+          ["^" + process.env.VUE_APP_BASE_API]: "",
+        },
+      },
+    },
+  },
+  configureWebpack: {
+    name,
+    resolve: {
+      alias: {
+        "@": resolve("src"),
+      },
+    },
+  },
+  chainWebpack(config) {
+    config.plugin("html").tap((args) => {
+      // 标题
+      args[0].title = name;
+      return args;
+    });
+  },
+});