This commit is contained in:
Халимов Рустам
2025-12-27 17:46:19 +03:00
parent ec66fceb80
commit d318519cd7
14 changed files with 1227 additions and 1 deletions

16
vite.config.ts Normal file
View File

@@ -0,0 +1,16 @@
import path from 'path';
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
server: {
port: 3000,
host: '0.0.0.0',
},
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
}
}
});