feat: 初始化前后端项目

This commit is contained in:
2025-12-10 13:54:05 +08:00
parent dbc0e5ab23
commit bc2d1bd4f2
25 changed files with 906 additions and 0 deletions

View File

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