first commit

This commit is contained in:
ZhangYonghao
2026-03-26 12:38:19 +08:00
commit af9d343f93
35 changed files with 4477 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
});