This commit is contained in:
telangpu
2026-05-09 14:43:37 +08:00
parent 2a2ed90bf0
commit b22e210ee5
117 changed files with 30982 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
server: {
host: "0.0.0.0",
proxy: {},
},
build: {
chunkSizeWarningLimit: 1000, // 将警告限制调整为 1000kB
},
});