first commit

This commit is contained in:
2026-01-09 19:14:41 +08:00
commit 9f3c96ce73
67 changed files with 9636 additions and 0 deletions

26
frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,26 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import path from 'path'
export default defineConfig({
plugins: [react()],
build: {
outDir: '../backend/static',
emptyOutDir: true,
},
server: {
port: 3000,
strictPort: true,
proxy: {
'/api': {
target: 'http://localhost:8000',
changeOrigin: true,
}
}
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})