This commit is contained in:
王子琦
2026-01-21 10:23:12 +08:00
parent 358b121e56
commit 996c6ce750
59 changed files with 4876 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
}
});