init: initial commit

This commit is contained in:
2026-08-26 12:58:07 +05:30
commit f850291b0b
19 changed files with 557 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import { svelte } from '@sveltejs/vite-plugin-svelte'
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [svelte(), tailwindcss()],
})