-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
93 lines (91 loc) · 2.38 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
import react from '@vitejs/plugin-react-swc';
import path from 'path';
import { defineConfig } from 'vite';
import CustomVitePluginReactRemoveAttributes from './plugins/remove-attrs';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react(),
CustomVitePluginReactRemoveAttributes({
attributes: ['data-test-id'],
}),
],
build: {
rollupOptions: {
output: {
manualChunks: {
'axios': ['axios'],
'sortablejs': ['sortablejs'],
'react-sortablejs': ['react-sortablejs'],
'react-dropzone': ['react-dropzone'],
'tailwind-merge': ['tailwind-merge'],
},
},
},
},
resolve: {
alias: [
{
find: '@pages',
replacement: path.resolve(__dirname, 'src/pages'),
},
{
find: '@widgets',
replacement: path.resolve(__dirname, 'src/widgets'),
},
{
find: '@features',
replacement: path.resolve(__dirname, 'src/features'),
},
{
find: '@entities',
replacement: path.resolve(__dirname, 'src/entities'),
},
{
find: '@utils',
replacement: path.resolve(__dirname, 'src/shared/utils'),
},
{
find: '@shadcn-ui',
replacement: path.resolve(__dirname, 'src/shared/shadcn-ui'),
},
{
find: '@stores',
replacement: path.resolve(__dirname, 'src/shared/stores'),
},
{
find: '@hooks',
replacement: path.resolve(__dirname, 'src/shared/hooks'),
},
{
find: '@typings',
replacement: path.resolve(__dirname, 'src/shared/typings'),
},
{
find: '@consts',
replacement: path.resolve(__dirname, 'src/shared/consts'),
},
{
find: '@contracts',
replacement: path.resolve(__dirname, 'src/shared/contracts'),
},
{
find: '@components',
replacement: path.resolve(__dirname, 'src/shared/components'),
},
{
find: '@styles',
replacement: path.resolve(__dirname, 'src/shared/styles'),
},
{
find: '@theme',
replacement: path.resolve(__dirname, 'src/shared/styles/theme.ts'),
},
{
find: '@config',
replacement: path.resolve(__dirname, './config/config.json'),
},
{ find: '@src', replacement: path.resolve(__dirname, 'src') },
],
},
});