-
Notifications
You must be signed in to change notification settings - Fork 5
/
vite.config.ts
51 lines (49 loc) · 1.68 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
/// <reference types="vitest" />
import path from 'path';
import react from '@vitejs/plugin-react-swc';
import { defineConfig } from 'vite';
import { dependencies } from './package.json';
function renderChunks(deps: Record<string, string>) {
const chunks: { [key: string]: string[] } = {};
Object.keys(deps).forEach((key) => {
if (['react', 'react-router-dom', 'react-dom'].includes(key)) {
return;
}
chunks[key] = [key];
});
return chunks;
}
// https://vitejs.dev/config/
export default defineConfig(() => ({
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/utils/test/setupTests.ts',
},
plugins: [react()],
resolve: {
alias: [
{ find: '@', replacement: path.resolve(__dirname, 'src') },
{ find: '@components', replacement: path.resolve(__dirname, 'src/components') },
{ find: '@constants', replacement: path.resolve(__dirname, 'src/constants') },
{ find: '@api', replacement: path.resolve(__dirname, 'src/api') },
{ find: '@context', replacement: path.resolve(__dirname, 'src/context') },
{ find: '@hooks', replacement: path.resolve(__dirname, 'src/hooks') },
{ find: '@pages', replacement: path.resolve(__dirname, 'src/pages') },
{ find: '@stories', replacement: path.resolve(__dirname, 'src/stories') },
{ find: '@type', replacement: path.resolve(__dirname, 'src/type') },
{ find: '@utils', replacement: path.resolve(__dirname, 'src/utils') },
],
},
build: {
sourcemap: false,
rollupOptions: {
output: {
manualChunks: {
vendor: ['react', 'react-router-dom', 'react-dom'],
...renderChunks(dependencies),
},
},
},
},
}));