prototype generated

This commit is contained in:
2026-08-13 08:51:04 +08:00
parent 2dbf1f7952
commit 64a27a20c4
83 changed files with 6112 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
export default defineConfig({
build: {
outDir: "dist/client",
},
optimizeDeps: {
include: ["vue", "@ant-design/icons-vue"],
},
server: {
host: "0.0.0.0",
allowedHosts: ["terminal.local"],
warmup: {
clientFiles: ["./src/main.js", "./src/App.vue"],
},
},
plugins: [vue()],
});