-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.umirc.ts
69 lines (68 loc) · 1.32 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
60
61
62
63
64
65
66
67
68
69
import { defineConfig } from 'umi';
import {
ChromeFilled,
CrownFilled,
SmileFilled,
TabletFilled,
} from '@ant-design/icons';
export default defineConfig({
nodeModulesTransform: {
type: 'none',
},
dva: {},
layout: {
navTheme: 'dark',
primaryColor: '#1890ff',
layout: 'sidemenu',
contentWidth: 'Fluid',
title: 'CATS SHOP CMS',
pwa: false,
iconfontUrl: '',
},
routes: [
{
path: '/',
component: '@/pages/index',
name: '首页',
icon: 'Crown',
access: 'isAdmin',
},
{
path: '/login',
component: '@/pages/login/index',
layout: false,
},
{
path: '/user',
component: '@/layouts/index',
name: '用户',
access: 'isAdmin',
routes: [
{
path: 'all',
name: '用户首页',
component: '@/pages/user/index',
access: 'isAdmin',
wrappers: ['@/wrappers/auth'],
},
],
},
{
path: '/goods',
component: '@/layouts/index',
name: '商品',
access: 'isAdmin',
routes: [
{
path: 'all',
name: '商品首页',
component: '@/pages/goods/index',
access: 'isAdmin',
wrappers: ['@/wrappers/auth'],
},
],
},
],
mfsu: {},
fastRefresh: {},
});