Initial commit

This commit is contained in:
2026-02-05 18:09:28 +03:00
commit d6ee21c9d7
24 changed files with 2645 additions and 0 deletions

9
vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
export default defineConfig({
root: '.',
publicDir: 'public',
build: {
outDir: 'dist',
},
})