PushGo Auto Commit 2026-03-27T01:00:57.339Z

This commit is contained in:
2026-03-27 09:00:57 +08:00
commit eafa1ffd57
29 changed files with 3213 additions and 0 deletions

11
vite.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
base: "./",
plugins: [react()],
build: {
outDir: "dist",
emptyOutDir: true
}
});