-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
79 lines (67 loc) · 1.54 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
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
type ViteConfigInput = {
mode: string
command: string
}
export default (args: ViteConfigInput) => {
const generateScopedName =
args.mode === 'production'
? '[hash:base64:8]'
: '[name]_[local]__[hash:base64:5]'
return defineConfig({
plugins: [react()],
resolve: {
alias: {
components: '/src/components',
constants: '/src/constants',
hooks: '/src/hooks',
services: '/src/services',
store: '/src/store',
styles: '/src/styles',
types: '/src/types',
utils: '/src/utils',
views: '/src/views',
},
},
css: {
modules: {
localsConvention: 'camelCase',
generateScopedName,
hashPrefix: 'prefix',
},
},
server: {
host: true,
},
build: {
rollupOptions: {
output: {
manualChunks(id: string) {
if (id.includes('node_modules')) {
// if (id.match(/node_modules\/(react|react-dom)\//)) {
// return 'react'
// }
// if (id.match(/node_modules\/(@reduxjs\/toolkit|react-redux)\//)) {
// return 'redux'
// }
// if (id.match(/node_modules\/react-router-dom\//)) {
// return 'react-router'
// }
if (id.match(/node_modules\/framer-motion\//)) {
return 'framer-motion'
}
// if (id.match(/node_modules\/lodash\//)) {
// return 'lodash'
// }
// if (id.match(/node_modules\/axios\//)) {
// return 'axios'
// }
return 'vendor'
}
},
},
},
},
})
}