first commit

This commit is contained in:
2025-02-20 13:46:19 +08:00
commit 38fbfdaef6
37 changed files with 908 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
const { defineConfig } = require("@vue/cli-service");
module.exports = defineConfig({
transpileDependencies: true,
lintOnSave: false,
devServer: {
port: 9955,
open: true,
proxy: {
"/api": {
// target: "http://localhost:911",
target: "http://47.114.150.226:88",
changeOrigin: true,
pathRewrite: {
"^/api": "",
},
ws: false,
},
},
},
});