初始化

This commit is contained in:
zg
2026-07-15 16:08:17 +08:00
parent f0d70aded4
commit 4e0057ece5
89 changed files with 13512 additions and 0 deletions

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

@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
root: '.',
base: '/',
build: {
outDir: 'static/dist',
emptyOutDir: true,
rollupOptions: {
input: resolve(__dirname, 'index.html'),
},
},
server: {
port: 5173,
},
})