1 Star 1 Fork 0

yuanbon/HuaAdmin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
yuanbon 提交于 2024-07-23 18:03 . update code
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import vueJsx from "@vitejs/plugin-vue-jsx";
// https://vitejs.dev/config/
export default defineConfig({
base: './',
plugins: [vue(), vueJsx()],
build: {
chunkSizeWarningLimit: 5000, // 单个模块文件大小限制1000KB
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
},
},
rollupOptions: {
output: {
manualChunks(id) {
// 静态资源拆分
if (id.includes("node_modules")) {
return id
.toString()
.split("node_modules/")[1]
.split("/")[0]
.toString();
}
},
},
},
},
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
},
},
},
server: {
open: true,
port: 10412,
proxy: {
"/api": {
target: "http://127.0.0.1:10414",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ""),
},
},
cors: true,
},
});
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yuanbon1/hua-admin.git
git@gitee.com:yuanbon1/hua-admin.git
yuanbon1
hua-admin
HuaAdmin
master

搜索帮助