add first services

This commit is contained in:
Николай Вигдоров
2025-08-03 13:11:32 +03:00
parent 98de7cc8bd
commit a46bf6038b
23 changed files with 10661 additions and 0 deletions

17
vite.config.ts Normal file
View File

@ -0,0 +1,17 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
root: 'src',
build: {
outDir: '../build',
emptyOutDir: true,
},
server: {
// Порт для сервера разработки
port: 3050,
},
});