chore(client): update sctucture after switching to vite

This commit is contained in:
2025-06-23 13:07:51 +05:00
parent 8ac329e76e
commit 5ed8ca9251
26 changed files with 2108 additions and 15608 deletions

23
client/vite.config.ts Normal file
View File

@@ -0,0 +1,23 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
export default defineConfig({
plugins: [react()],
server: {
port: 3000,
open: false,
},
build: {
outDir: 'build',
},
preview: {
port: 3000,
open: false,
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
});