Update der Ansicht

This commit is contained in:
2025-08-17 07:19:32 +00:00
parent 028fee7794
commit c3515ac714
16 changed files with 3858 additions and 144 deletions
+8 -3
View File
@@ -4,9 +4,14 @@ import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
server: {
host: true,
port: 5173,
proxy: {
"/api": "http://localhost:3000"
}
}
"/api": {
target: "http://localhost:4000", // dein Backend
changeOrigin: true,
},
},
},
});