guardia-hrm/frontend/vite.config.ts
DESKTOP-TKLFCPR\ython f7aa51c33f feat(hrm): GUARDiA HRM v1.0 AI 인사관리 플랫폼 (사원/조직/급여/근태/성과/채용/교육/AI분석)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-14 13:52:49 +09:00

16 lines
328 B
TypeScript

import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': { target: 'http://localhost:8014', changeOrigin: true }
}
},
build: {
outDir: '../backend/src/main/resources/static',
emptyOutDir: true
}
})