初始化

This commit is contained in:
2026-03-27 15:02:54 +08:00
commit ffb4deefb9
25 changed files with 13214 additions and 0 deletions

15
vue.config.js Normal file
View File

@@ -0,0 +1,15 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = {
devServer: {
port: 8081,
proxy: {
'/api': {
target: 'http://47.105.32.17:8888',
changeOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}