frontend/vite.config.js aktualisiert

This commit is contained in:
2026-05-25 15:56:37 +02:00
parent 0ff2b04b09
commit f57ac344e2

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

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: { proxy: { '/api': 'http://localhost:4000' } },
})