-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
53 lines (51 loc) · 1.21 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
import path from 'path';
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons';
import tsconfigPaths from 'vite-tsconfig-paths';
// https://vitejs.dev/config/
export default defineConfig({
base: './',
esbuild: {
// drop: ['console', 'debugger'],
},
css: {
// 开css sourcemap方便找css
devSourcemap: true,
},
plugins: [
react(),
// 同步tsconfig.json的path设置alias
tsconfigPaths(),
createSvgIconsPlugin({
// 指定需要缓存的图标文件夹
iconDirs: [path.resolve(process.cwd(), 'src/assets/icons')],
// 指定symbolId格式
symbolId: 'icon-[dir]-[name]',
}),
],
server: {
// 自动打开浏览器
open: true,
host: true,
port: 3001,
proxy: {
'/api': {
target: process.env.VITE_APP_BASE_URL || 'http://localhost:3000',
changeOrigin: true,
rewrite: (path) => path.replace(/^\/api/, ''),
},
},
},
build: {
target: 'esnext',
minify: 'terser',
terserOptions: {
compress: {
// 生产环境移除console
drop_console: true,
drop_debugger: true,
},
},
},
});