1 Star 0 Fork 1

ouyang86/vxe-design-template

forked from XE/vxe-design-template 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
vite.config.ts 1.24 KB
一键复制 编辑 原始数据 按行查看 历史
xuliangzhan 提交于 2024-10-18 15:49 . update docs
import { UserConfig, ConfigEnv, loadEnv } from 'vite'
import path from 'path'
import XEUtils from 'xe-utils'
import vue from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import { createHtmlPlugin } from 'vite-plugin-html'
import externalGlobals from 'rollup-plugin-external-globals'
import zipPack from 'vite-plugin-zip-pack'
// https://vitejs.dev/config/
export default ({ mode }: ConfigEnv): UserConfig => {
const env = loadEnv(mode, process.cwd(), 'VITE_')
return {
base: '/design-template/',
plugins: [
vue(),
vueJsx(),
createHtmlPlugin({
inject: {
data: {
VITE_APP_BUILD_TIME: XEUtils.toDateString(new Date(), 'yyyy-MM-dd HH:mm:ss'),
...env
}
}
}),
zipPack({
outDir: './'
})
],
resolve: {
alias: {
'@': path.join(__dirname, './src')
},
extensions: ['.js', '.vue', '.json', '.ts', '.tsx']
},
server: {
port: 8084
},
build: {
rollupOptions: {
// 不打包依赖
external: ['echarts'],
plugins: [
// 不打包依赖映射的对象
externalGlobals({
echarts: 'echarts'
})
]
}
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/oyj86/vxe-design-template.git
git@gitee.com:oyj86/vxe-design-template.git
oyj86
vxe-design-template
vxe-design-template
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385