feat: add frontend/vite.config.ts

This commit is contained in:
zio 2026-06-01 22:12:57 +09:00
parent 605cbcee27
commit 75f0899b88

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

@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/api': { target: 'http://localhost:8026', changeOrigin: true },
},
},
build: { outDir: '../dist', emptyOutDir: true },
})