mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import { resolve } from 'node:path'
|
||
import type { ConfigEnv } from 'vite'
|
||
import { defineConfig, loadEnv } from 'vite'
|
||
import { createViteProxy, setVitePlugins } from './build'
|
||
import { proxyConfig } from './src/config'
|
||
|
||
// 当前执行node命令时文件夹的地址(工作目录)
|
||
const rootPath: string = resolve(process.cwd())
|
||
const srcPath = `${rootPath}/src`
|
||
|
||
// https://vitejs.dev/config/
|
||
export default defineConfig(({ mode }: ConfigEnv) => {
|
||
// 在开发环境下 command 的值为 serve 生产环境下为 build
|
||
|
||
// 根据当前工作目录中的 `mode` 加载 .env 文件
|
||
// 设置第三个参数为 '' 来加载所有环境变量,而不管是否有 `VITE_` 前缀。
|
||
const env = loadEnv(mode, process.cwd(), '') as unknown as ImportMetaEnv
|
||
const envConfig = proxyConfig[mode as ServiceEnvType]
|
||
|
||
return {
|
||
base: env.VITE_BASE_URL,
|
||
plugins: setVitePlugins(env),
|
||
resolve: {
|
||
alias: {
|
||
'~': rootPath,
|
||
'@': srcPath,
|
||
},
|
||
},
|
||
server: {
|
||
host: '0.0.0.0',
|
||
port: 4000,
|
||
open: false,
|
||
proxy:
|
||
env.VITE_HTTP_PROXY === 'Y' ? createViteProxy(envConfig) : undefined,
|
||
},
|
||
preview: {
|
||
port: 5211,
|
||
},
|
||
build: {
|
||
target: 'esnext',
|
||
reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告
|
||
sourcemap: false, // 构建后是否生成 source map 文件
|
||
assetsInlineLimit: 4096, // 4kb内资源使用base64
|
||
},
|
||
optimizeDeps: {
|
||
include: ['echarts', 'md-editor-v3', '@tinymce/tinymce-vue'],
|
||
},
|
||
}
|
||
})
|