1 Star 0 Fork 226

红牛微服务/leadshop后台VUE源码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.js 1.34 KB
一键复制 编辑 原始数据 按行查看 历史
钟传华 提交于 2024-08-09 11:35 . 使用vite5
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue2 from '@vitejs/plugin-vue2'
import vue2Jsx from '@vitejs/plugin-vue2-jsx'
import commonjs from 'vite-plugin-commonjs'
export default defineConfig(({ command, mode }) => {
return {
base: mode === 'production' ? '/assets/admin/' : '/',
plugins: [
vue2(),
vue2Jsx(),
commonjs(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue'],
},
build: {
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true,
unsafe: false,
pure_funcs: ['console.log', 'console.info'] // 移除console.log和console.info
},
keep_classnames: true
},
chunkSizeWarningLimit: 1000,
rollupOptions: {
output: {
manualChunks (id) {
if (id.includes('node_modules')) {
return id.toString().split('node_modules/')[1].split('/')[0].toString()
}
},
},
},
},
optimizeDeps: {
esbuildOptions: {
target: 'es2020'
}
},
server: {
port: 9527,
host: true,
open: true,
proxy: {},
}
}
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/red-bull-microservices/panel.git
git@gitee.com:red-bull-microservices/panel.git
red-bull-microservices
panel
leadshop后台VUE源码
master

搜索帮助