Dateien nach "frontend" hochladen

This commit is contained in:
2026-05-25 15:55:53 +02:00
parent 2310043891
commit 3fb18d1390
4 changed files with 153 additions and 0 deletions

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