This commit is contained in:
Николай Вигдоров
2025-07-13 11:40:36 +03:00
commit b85974527c
8 changed files with 1072 additions and 0 deletions

12
vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
import {defineConfig, type UserConfig} from 'vite';
export default defineConfig({
root: 'src',
build: {
outDir: '../build',
emptyOutDir: true,
},
server: {
port: 3000,
}
}) satisfies UserConfig;