chore: initial project scaffold: frontend/vite.config.ts

This commit is contained in:
2026-04-13 18:30:30 +00:00
parent 9d9c9363e2
commit 30bbb57ff9

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

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
},
},
},
});