From c9c15970f84639b25b082a1366a3704371e4960e Mon Sep 17 00:00:00 2001 From: Dicken Date: Thu, 28 May 2026 10:10:01 +0200 Subject: [PATCH] Dateien nach "frontend/public" hochladen --- frontend/public/vite.config.js | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 frontend/public/vite.config.js diff --git a/frontend/public/vite.config.js b/frontend/public/vite.config.js new file mode 100644 index 0000000..af132f8 --- /dev/null +++ b/frontend/public/vite.config.js @@ -0,0 +1,10 @@ +import { defineConfig } from 'vite' +import react from '@vitejs/plugin-react' + +export default defineConfig({ + plugins: [react()], + server: { proxy: { '/api': 'http://localhost:4000' } }, + define: { + __BUILD_TIME__: JSON.stringify(new Date().toISOString()), + }, +})