Cursor 도입 확인 및 개선 사항 정리(REVIEW.md, IMPROVEMNETS.md)

This commit is contained in:
Hyungi Ahn
2025-07-16 07:09:15 +09:00
parent fc61e44fd6
commit 5ac9d562d5
10 changed files with 4225 additions and 0 deletions

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

@@ -0,0 +1,16 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
host: true,
open: true
},
build: {
outDir: 'dist',
sourcemap: true
}
})