initial Commit

This commit is contained in:
2025-12-13 11:27:20 +03:30
commit 21998089fe
15 changed files with 1530 additions and 0 deletions

10
vite.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
// https://vite.dev/config/
export default defineConfig({
plugins: [
vue(),
tailwindcss()
],
})