This commit is contained in:
王子琦
2026-01-13 16:58:45 +08:00
parent 511c3bfdbe
commit 0387b43083
81 changed files with 3451 additions and 0 deletions

9
frontend/vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5173
}
})