first commit

This commit is contained in:
2025-12-13 20:08:01 +01:00
commit cc34dd0fd9
21 changed files with 5645 additions and 0 deletions

13
vite.config.js Normal file
View File

@@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': 'http://localhost:8080',
'/uploads': 'http://localhost:8080'
}
}
})