-
Notifications
You must be signed in to change notification settings - Fork 1
/
.umirc.ts
32 lines (31 loc) · 823 Bytes
/
.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
import { defineConfig } from 'umi';
export default defineConfig({
nodeModulesTransform: {
type: 'none',
},
title: '天津風 - 雫',
routes: [
{
path: '/',
component: '@/index',
routes: [
{ path: '/', component: 'Home' },
{ path: '/playground', component: 'Playground' },
{ path: '/editor', component: 'Editor' },
{ path: '/about', component: 'About' },
{ path: '/gallery', component: 'Gallery' },
{ path: '/story', component: 'Story' },
{ path: '/feedback', component: 'Feedback' },
{ path: '/help', component: 'Help' },
],
},
],
locale: {
antd: true,
default: 'en-US',
title: true,
baseNavigator: true,
baseSeparator: '-',
},
mfsu: { production: { output: '.mfsu-production' } },
});