Moved the NodeJS version of the application to the app/ directory.

This commit is contained in:
2026-04-20 07:17:30 +02:00
parent 0d12f24dec
commit 9100f71ab5
30 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
build: {
outDir: "../dist/frontend",
emptyOutDir: true
},
server: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:3000",
changeOrigin: true
}
}
}
});