This commit is contained in:
2026-06-22 21:36:22 +08:00
parent c0b84b9ea4
commit 0fc3d6c7c8
20 changed files with 2330 additions and 518 deletions

View File

@@ -4,4 +4,12 @@ import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': {
target: 'http://127.0.0.1:3000',
changeOrigin: true,
},
},
},
})