-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvite.config.ts
55 lines (53 loc) · 1.74 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
import react from '@vitejs/plugin-react';
import { resolve } from 'path';
import { defineConfig, splitVendorChunkPlugin } from 'vite';
import checker from 'vite-plugin-checker';
import eslint from 'vite-plugin-eslint';
import svgrPlugin from 'vite-plugin-svgr';
const projectRootDir = resolve(__dirname);
// https://vitejs.dev/config/
export default defineConfig({
define: {
'process.env': process.env
},
build: {
outDir: 'build'
},
plugins: [
react(),
svgrPlugin({
svgrOptions: {
icon: true
// ...svgr options (https://react-svgr.com/docs/options/)
}
}),
eslint(),
splitVendorChunkPlugin(),
checker({ typescript: true })
],
resolve: {
alias: [
// TODO: alias should be sync with vitest.config.ts
{ find: 'assets', replacement: resolve(projectRootDir, 'src/assets') },
{ find: 'components', replacement: resolve(projectRootDir, './src/components') },
{ find: 'config', replacement: resolve(projectRootDir, './src/config') },
{ find: 'hooks', replacement: resolve(projectRootDir, './src/hooks') },
{ find: 'pages', replacement: resolve(projectRootDir, './src/pages') },
{ find: 'reducers', replacement: resolve(projectRootDir, './src/reducers') },
{ find: 'types', replacement: resolve(projectRootDir, './src/types') },
{ find: 'utils', replacement: resolve(projectRootDir, './src/utils') },
{ find: 'test', replacement: resolve(projectRootDir, './src/test') },
{ find: 'styles', replacement: resolve(projectRootDir, './src/styles') }
]
},
css: {
preprocessorOptions: {
less: {
modifyVars: {
'@primary-color': '#9254de' // purple-5
},
javascriptEnabled: true
}
}
}
});