mirror of
https://gitee.com/wonderful-code/buildadmin
synced 2024-11-22 15:24:09 +00:00
78 lines
2.3 KiB
TypeScript
78 lines
2.3 KiB
TypeScript
import vue from '@vitejs/plugin-vue'
|
|
import { resolve } from 'path'
|
|
import type { UserConfig, ConfigEnv, ProxyOptions } from 'vite'
|
|
import { isProd, loadEnv } from '/@/utils/vite'
|
|
import { svgBuilder } from '/@/components/icon/svg/index'
|
|
|
|
const pathResolve = (dir: string): any => {
|
|
return resolve(__dirname, '.', dir)
|
|
}
|
|
|
|
// https://vitejs.cn/config/
|
|
const viteConfig = ({ mode }: ConfigEnv): UserConfig => {
|
|
const { VITE_PORT, VITE_OPEN, VITE_BASE_PATH, VITE_OUT_DIR, VITE_PROXY_URL } = loadEnv(mode)
|
|
|
|
const alias: Record<string, string> = {
|
|
'/@': pathResolve('./src/'),
|
|
assets: pathResolve('./src/assets'),
|
|
'vue-i18n': isProd(mode) ? 'vue-i18n/dist/vue-i18n.cjs.prod.js' : 'vue-i18n/dist/vue-i18n.cjs.js',
|
|
}
|
|
|
|
let proxy: Record<string, string | ProxyOptions> = {}
|
|
if (VITE_PROXY_URL) {
|
|
proxy = {
|
|
'/': {
|
|
target: VITE_PROXY_URL,
|
|
changeOrigin: true,
|
|
},
|
|
}
|
|
}
|
|
|
|
return {
|
|
plugins: [vue(), svgBuilder('./src/assets/icons/')],
|
|
root: process.cwd(),
|
|
resolve: { alias },
|
|
base: VITE_BASE_PATH,
|
|
server: {
|
|
host: '0.0.0.0',
|
|
port: VITE_PORT,
|
|
open: VITE_OPEN,
|
|
proxy: proxy,
|
|
},
|
|
build: {
|
|
cssCodeSplit: false,
|
|
sourcemap: false,
|
|
outDir: VITE_OUT_DIR,
|
|
emptyOutDir: true,
|
|
chunkSizeWarningLimit: 1500,
|
|
rollupOptions: {
|
|
output: {
|
|
manualChunks: {
|
|
// 分包配置,配置完成自动按需加载
|
|
vue: ['vue', 'vue-router', 'pinia', 'vue-i18n', 'element-plus'],
|
|
echarts: ['echarts'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
css: {
|
|
postcss: {
|
|
plugins: [
|
|
{
|
|
postcssPlugin: 'internal:charset-removal',
|
|
AtRule: {
|
|
charset: (atRule) => {
|
|
if (atRule.name === 'charset') {
|
|
atRule.remove()
|
|
}
|
|
},
|
|
},
|
|
},
|
|
],
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
export default viteConfig
|