-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.umirc.ts
59 lines (58 loc) · 1.43 KB
/
.umirc.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
import { defineConfig } from 'dumi'
const getLessConfig = require('./lessConfig')
const lessConfig = getLessConfig()
const menuConfig = require('./config/menuConfig')
const navConfig = require('./config/navConfig')
export default defineConfig({
title: 'web-react',
description: 'react 学习笔记',
base: '/web-react/',
publicPath: '/web-react/',
// favicon: '/favicon.ico',
logo: 'http://img.mrsingsing.com/javascript-guidebook-favicon.png',
hash: true,
lessLoader: lessConfig,
sass: {},
mode: 'site',
menus: menuConfig,
navs: navConfig,
// chainWebpack(memo, { env, webpack, createCSSRule }) {
// console.log(memo.output.publicPath)
// // memo.output.publicPath = ()
// },
extraBabelPresets: [
[
'@babel/preset-env',
{
targets: {
browsers: ['last 2 versions']
},
modules: false
}
],
'@babel/preset-react',
'@babel/preset-typescript'
],
extraBabelPlugins: [
'@babel/plugin-transform-runtime',
['@babel/plugin-proposal-decorators', { legacy: true }],
['@babel/plugin-proposal-class-properties', { loose: true }],
'@babel/plugin-proposal-object-rest-spread',
['import',
{
libraryName: 'antd',
libraryDirectory: 'es',
style: 'css',
}
]
],
devServer: {
headers: {
'Access-Control-Allow-Origin': '*'
},
historyApiFallback: true,
proxy: {
}
},
// exportStatic: {},
})