Dateien nach "frontend" hochladen

This commit is contained in:
2026-05-25 12:10:46 +02:00
parent a9ec067798
commit bd53637a58
3 changed files with 35 additions and 0 deletions

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' } },
})