This commit is contained in:
cgp 2025-01-20 09:48:19 +08:00
parent c161d39dab
commit 1a09c42147
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false,
// publicPath: '/eng/', //英文打包
devServer: {
client: { //加上这个就好了
overlay: false,
},
// proxy: {
// "/Handler": {
// target: "http://172.16.1.254:10014/Handler",
// pathRewrite: { "^/Handler": "" },
// secure: false,
// changeOrigin: true,
// },
// },
},
});