Files
zy-client-a/zy1_in_post_shadowfax/vite.config.ts
tom@tom.com 84cb2597a4 first commit
2026-04-19 17:51:16 +08:00

22 lines
465 B
TypeScript

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
},
});