first_commit

This commit is contained in:
Tom-lyz
2025-08-26 17:41:23 +08:00
commit 467962dbb2
39 changed files with 1664 additions and 0 deletions

9
vite.config.ts Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tsconfigPaths from "vite-tsconfig-paths";
import tailwindcss from "@tailwindcss/vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths(), tailwindcss()],
});