This commit is contained in:
Aaro Varis
2026-02-19 10:40:10 +02:00
parent dbc246bf95
commit c317ff287c
16 changed files with 1923 additions and 114 deletions

15
webapp/vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: '../public',
emptyOutDir: true,
},
server: {
proxy: {
'/api': 'http://localhost:5000'
}
}
})