forked from shi-gui/react-admin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
60 lines (59 loc) · 1.57 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
import { defineConfig } from 'vite';
import path from 'path';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig(({ command, mode }) => {
return {
base: './',
// 配置别名
resolve: {
alias: {
'@': path.resolve(__dirname, './src')
}
},
css: {
/**
* 加载入口文件
* ❌ 必须在main.tsx中引入一个less文件,这里的引入才会生效
* ✅ 所以直接在main.tsx中加载入口文件吧。
*/
// preprocessorOptions: {
// less: {
// charset: false,
// additionalData: `@import '@/assets/css/index.less';`
// }
// }
},
build: {
outDir: 'dist', // 输出目录
assetsDir: 'assets', // 静态资源存放目录
assetsInlineLimit: 4096, // 资源内联阈值
cssCodeSplit: true, // 开启css拆分
sourcemap: false, // 开启sourcemap
minify: 'esbuild' // 压缩工具, terser压缩率更高1%-2%,esbuild压缩更快20-40 倍
},
esbuild: {
/*
打包生产环境移除 console、debugger
https://www.cnblogs.com/guangzan/p/16633753.html
*/
drop: mode === 'prod' ? ['console', 'debugger'] : []
},
plugins: [react()],
// 配置代理
server: {
host: '0.0.0.0',
port: 3000,
open: false,
proxy: {
'/api': {
target: '',
changeOrigin: true,
secure: false,
rewrite: path => path.replace(/^\/cloud/, '/api')
}
},
cors: true
}
};
});