forked from sankeyangshu/react-template-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
100 lines (92 loc) · 3.31 KB
/
vite.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { resolve } from 'path';
import { ConfigEnv, UserConfig, defineConfig, loadEnv } from 'vite';
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
import { wrapperEnv } from './build/getEnv';
import { createProxy } from './build/proxy';
import react from '@vitejs/plugin-react';
import dayjs from 'dayjs';
import pkg from './package.json';
const { dependencies, devDependencies, name, version } = pkg;
const __APP_INFO__ = {
// APP 后台管理信息
pkg: { dependencies, devDependencies, name, version },
// 最后编译时间
lastBuildTime: dayjs().format('YYYY-MM-DD HH:mm:ss'),
};
// https://vitejs.dev/config/
export default defineConfig((config: ConfigEnv): UserConfig => {
// process.cwd() 方法返回 Node.js 进程的当前工作目录
const root = process.cwd();
// mode 返回应用的环境模式 development(开发环境) 或者 production(生产环境)
const { mode } = config;
// loadEnv() 根据 mode 检查 root(项目根路径) 路径下 .env、.env.development 环境文件,输出 NODE_ENV 和 VITE_ 开头的键值队
const env = loadEnv(mode, process.cwd());
// 读取并处理所有环境变量配置文件 .env
const viteEnv = wrapperEnv(env);
return {
base: viteEnv.VITE_PUBLIC_PATH,
root,
plugins: [
react(),
// 使用 svg 图标
createSvgIconsPlugin({
// 指定需要缓存的图标文件夹
iconDirs: [resolve(process.cwd(), 'src/assets/icons')],
// 指定symbolId格式
symbolId: 'icon-[dir]-[name]',
}),
],
// 配置别名
resolve: {
alias: {
'@': resolve(__dirname, './src'), // 设置 `@` 指向 `src` 目录
},
},
css: {
preprocessorOptions: {
less: {
javascriptEnabled: true,
additionalData: `@import "@/styles/variables.less";`,
},
},
},
// 跨域代理
server: {
host: true,
// port: viteEnv.VITE_PORT,
open: viteEnv.VITE_OPEN,
cors: true,
proxy: createProxy(viteEnv.VITE_PROXY),
},
// 定义全局常量替换方式
define: {
__APP_INFO__: JSON.stringify(__APP_INFO__),
},
esbuild: {
// 使用 esbuild 压缩 剔除 console.log
pure: viteEnv.VITE_DROP_CONSOLE ? ['console.log', 'debugger'] : [],
},
build: {
minify: 'esbuild',
// 构建后是否生成 source map 文件(用于线上报错代码报错映射对应代码)
sourcemap: false,
// 指定输出路径(相对于 项目根目录)
outDir: 'dist',
// 只有 minify 为 terser 的时候, 本配置项才能起作用
// esbuild 打包更快,但是不能去除 console.log,terser打包慢,但能去除 console.log
// minify: 'terser',
// terserOptions: {
// compress: {
// // 防止 Infinity 被压缩成 1/0,这可能会导致 Chrome 上的性能问题
// keep_infinity: true,
// // 打包是否自动删除 console
// drop_console: viteEnv.VITE_DROP_CONSOLE,
// },
// },
// 启用/禁用 gzip 压缩大小报告 - 压缩大型输出文件可能会很慢,因此禁用该功能可能会提高大型项目的构建性能
reportCompressedSize: false,
// chunk 大小警告的限制(以 kbs 为单位)
chunkSizeWarningLimit: 2000,
},
};
});