Added basic frontend

This commit is contained in:
Lukian 2025-03-24 10:49:09 +01:00
parent eb0136097e
commit ae1fea3790
12 changed files with 411 additions and 155 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,
},
},
},
})