This commit is contained in:
root
2026-08-15 05:27:48 +03:00
commit 39250c6fa6
18 changed files with 1664 additions and 0 deletions

7
vite.config.js Normal file
View File

@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import { svelte } from '@sveltejs/vite-plugin-svelte'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte()],
})