初始提交

This commit is contained in:
2026-02-12 15:40:10 +08:00
commit 1035446d4d
52 changed files with 11397 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
},
server: {
port: 15173,
proxy: {
'/api': {
target: 'http://111.170.7.193:8000',
changeOrigin: true,
rewrite: (path) => path
}
}
}
})