-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.js
26 lines (26 loc) · 1.33 KB
/
config.js
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
window.AppConf = {
rootHost: 'http://localhost:8080',
menus: [
{ path: '/', icon: 'fa fa-dashboard text-maroon', text: 'Dashboard' },
{
path: '/ui', icon: 'fa fa-laptop', text: 'UI Elements', children: [
{ path: '/ui/box', icon: 'fa fa-circle-o text-red', text: 'Box' },
{ path: '/ui/info-box', icon: 'fa fa-circle-o text-yellow', text: 'Info Box' },
{ path: '/ui/small-box', icon: 'fa fa-circle-o text-yellow', text: 'Small Box' },
{ path: '/ui/alert', icon: 'fa fa-circle-o text-yellow', text: 'Alert' },
{ path: '/ui/progress', icon: 'fa fa-circle-o text-yellow', text: 'Progress' },
{ path: '/ui/tabset', icon: 'fa fa-circle-o text-yellow', text: 'Tabset' },
{ path: '/ui/modal', icon: 'fa fa-circle-o text-yellow', text: 'Modal' },
{ path: '/ui/timeline', icon: 'fa fa-circle-o text-yellow', text: 'Timeline' },
{ path: '/ui/tag', icon: 'fa fa-circle-o text-yellow', text: 'Tag' },
]
},
{
path: '/forms', icon: 'fa fa-edit', text: 'Forms', children: [
{ path: '/forms/pagination', icon: 'fa fa-circle-o text-red', text: 'Pagination' },
{ path: '/forms/rating', icon: 'fa fa-circle-o text-yellow', text: 'Rating' },
{ path: '/forms/tag-input', icon: 'fa fa-circle-o text-yellow', text: 'Tag Input' }
]
}
]
};