Initial commit after re-install

This commit is contained in:
2026-02-25 19:11:30 +09:00
commit 7d29779a1f
37 changed files with 6505 additions and 0 deletions

13
client/vite.config.ts Normal file
View File

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