feat(frontend): add management portal landing page

This commit is contained in:
david
2026-07-31 15:00:44 +08:00
parent ad6a914450
commit 486fcc94e9
16 changed files with 2536 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
build: {
outDir: "dist/client",
},
optimizeDeps: {
include: ["react", "react-dom/client"],
},
server: {
host: "0.0.0.0",
allowedHosts: ["terminal.local"],
warmup: {
clientFiles: ["./src/main.jsx"],
},
},
plugins: [react()],
});