1 Star 9 Fork 0

春贰/一切皆可以配置的流程行业MES系统,适用于制药食品冶金等

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 2.09 KB
一键复制 编辑 原始数据 按行查看 历史
chun222 提交于 2024-03-20 12:01 . 初始化
/*
* @Date: 2021-11-30 15:42:07
* @LastEditors: 春贰
* @Desc:
* @LastEditTime: 2023-11-06 11:58:23
* @FilePath: \web\vite.config.js
*/
import { resolve } from "path/posix";
import { defineConfig, loadEnv } from "vite";
import vue from "@vitejs/plugin-vue";
import visualizer from "rollup-plugin-visualizer";
import path from "path";
const plugins = [vue()];
//分析插件
if (process.env.vis) {
plugins.push(
visualizer({
open: true,
gzipSize: true,
brotliSize: true
})
);
}
const config = ({ mode }) => {
// console.log(loadEnv(mode, process.cwd()).VITE_PORT);
return defineConfig({
plugins,
base: process.env.ELECTRON == "true" ? "./" : "",
server: {
host: "0.0.0.0",
port: loadEnv(mode, process.cwd()).VITE_PORT
},
resolve: {
extensions: [".js", ".vue", ".json"],
alias: {
"@": path.resolve(__dirname, "src"),
component: path.resolve(__dirname, "src/component"),
img: path.resolve(__dirname, "src/assets/image"),
images: path.resolve(__dirname, "src/assets/image"),
font: path.resolve(__dirname, "src/assets/font")
}
},
// 开启less支持
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true
}
}
},
hmr: {
overlay: true
},
build: {
minify: "terser",
chunkSizeWarningLimit: 1500, // 单个文件大小警告
//清除console
terserOptions: {
compress: {
drop_console: false,
drop_debugger: true
}
},
rollupOptions: {
// output:{
// manualChunks(id){ // 分包
// if(id.includes('node_modules')){
// return id.toString().split('node_modules/')[1].split('/')[0].toString();
// }
// }
// }
}
},
optimizeDeps: {
exclude: ["@antv/x6-vue-shape"] //这玩意一定要加,因为x6 是commonjs
},
define: {
// 定义全局变量 版本号
__VERSION__: JSON.stringify(process.env.npm_package_version)
}
});
};
export default config;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/chun22222222/tmes.git
[email protected]:chun22222222/tmes.git
chun22222222
tmes
一切皆可以配置的流程行业MES系统,适用于制药食品冶金等
master

搜索帮助