first commit
Some checks failed
Deploy Application / deploy (push) Failing after 7m8s

This commit is contained in:
2025-06-11 21:01:17 +04:00
commit 5c7e5fabbb
29 changed files with 3074 additions and 0 deletions

8
vite.config.ts Normal file
View File

@ -0,0 +1,8 @@
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()],
});