update
This commit is contained in:
21
ww_gb_post_temp1/vite.config.ts
Normal file
21
ww_gb_post_temp1/vite.config.ts
Normal 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
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user