feat: basic framework

This commit is contained in:
wuyugu
2025-08-01 17:52:35 +08:00
commit 1b2dafb654
24 changed files with 1068 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { fileURLToPath, URL } from "node:url";
import tailwindcss from "@tailwindcss/vite";
import vueJsx from "@vitejs/plugin-vue-jsx";
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(), tailwindcss(), vueJsx()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});