feat(frontend): scaffold Vite + React + TypeScript project

This commit is contained in:
meelstorm
2026-07-17 17:52:47 +00:00
committed by EugeneTes
parent b6a0709c3e
commit 96468d9dde
12 changed files with 1556 additions and 0 deletions

17
Frontend/vite.config.ts Normal file
View File

@@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
server: {
port: 5173,
proxy: {
'/ws': {
target: 'ws://localhost:5100',
ws: true,
changeOrigin: true,
},
},
},
});