add: added homepage

This commit is contained in:
Lukian 2025-04-23 09:09:43 +02:00
parent 736f097d20
commit 92f0f90e14
12 changed files with 3825 additions and 153 deletions

View file

@ -4,4 +4,14 @@ import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': {
target: 'http://localhost:3000',
changeOrigin: true,
secure: false,
ws: true,
},
},
},
})