This commit is contained in:
2025-08-21 11:23:54 +08:00
commit abf7f3c799
530 changed files with 60239 additions and 0 deletions

21
vue.config.js Normal file
View File

@@ -0,0 +1,21 @@
/**
* Copyright (c) 2013-Now http://aidex.vip All rights reserved.
*/
module.exports = {
configureWebpack: {
devServer: {
port : 8081,
disableHostCheck : true,
proxy : {
"/api" : {
target : "http://127.0.0.1:8080",
// target : "http://183.230.235.66:11010",
// target : "http://tc.cqsznc.com:7080",
changeOrigin : true,
secure : false
}
}
}
},
productionSourceMap: false,
}