Initial commit

This commit is contained in:
2025-10-13 15:00:54 +09:00
committed by 이민규
commit 3201c9e9f6
43 changed files with 5126 additions and 0 deletions

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

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
},
},
},
})