.umirc.ts
609 Bytes
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
import { defineConfig } from 'umi';
import pkg from './package.json';
import routes from './src/routes';
export default defineConfig({
esbuild: {},
mountElementId: pkg.name,
webpack5: {
lazyCompilation: {},
},
runtimePublicPath: false,
nodeModulesTransform: {
type: 'none',
},
history: {
type: 'hash'
},
hash: true,
title: false,
lessLoader: {
globalVars: {
theme: 'true;@import "~@/variable.less"',
}
},
antd: {
config: {
}
},
theme: {
'root-entry-name': 'variable'
},
routes,
fastRefresh: {},
qiankun: {
slave: {},
},
});