forked from folio-org/platform-complete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stripes.config.js
86 lines (86 loc) · 2.62 KB
/
stripes.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
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = {
okapi: { 'url':'http://localhost:9130', 'tenant':'diku' },
config: {
logCategories: 'core,path,action,xhr',
logPrefix: '--',
maxUnpagedResourceCount: 2000,
showPerms: false,
preserveConsole: true,
useSecureTokens: true,
},
modules: {
'@folio/acquisition-units': {},
'@folio/agreements': {},
'@folio/bulk-edit': {},
'@folio/calendar' : {},
'@folio/checkin' : {},
'@folio/checkout' : {},
'@folio/circulation' : {},
'@folio/circulation-log' : {},
'@folio/courses' : {},
'@folio/consortia-settings' : {},
'@folio/dashboard': {},
'@folio/data-export' : {},
'@folio/data-import' : {},
'@folio/developer' : {},
'@folio/erm-comparisons' : {},
'@folio/erm-usage': {},
'@folio/eholdings' : {},
'@folio/export-manager': {},
'@folio/finance' : {},
"@folio/gobi-settings": {},
'@folio/handler-stripes-registry': {},
'@folio/inventory' : {},
'@folio/invoice': {},
'@folio/ldp': {},
'@folio/licenses': {},
'@folio/lists': {},
'@folio/local-kb-admin': {},
'@folio/marc-authorities': {},
'@folio/myprofile' : {},
'@folio/notes' : {},
'@folio/oai-pmh' : {},
'@folio/orders': {},
'@folio/organizations' : {},
'@folio/plugin-bursar-export' : {},
'@folio/plugin-create-inventory-records' : {},
'@folio/plugin-find-agreement': {},
'@folio/plugin-find-authority' : {},
'@folio/plugin-find-contact': {},
'@folio/plugin-find-eresource': {},
'@folio/plugin-find-erm-usage-data-provider': {},
'@folio/plugin-find-fund': {},
'@folio/plugin-find-import-profile' : {},
'@folio/plugin-find-instance' : {},
'@folio/plugin-find-interface' : {},
'@folio/plugin-find-license': {},
'@folio/plugin-find-organization': {},
'@folio/plugin-find-package-title': {},
'@folio/plugin-find-po-line': {},
'@folio/plugin-find-user' : {},
'@folio/plugin-query-builder' : {},
'@folio/quick-marc': {},
'@folio/receiving' : {},
'@folio/remote-storage' : {},
'@folio/requests' : {},
'@folio/servicepoints' : {},
'@folio/service-interaction': {},
'@folio/plugin-eusage-reports': {},
'@folio/stripes-authority-components' : {},
'@folio/stripes-erm-components': {},
'@folio/tags': {},
'@folio/tenant-settings' : {},
'@folio/users' : {},
'@folio/serials-management' : {},
'@folio/stripes-marc-components' : {}
},
branding: {
logo: {
src: './tenant-assets/opentown-libraries-logo.png',
alt: 'Opentown Libraries',
},
favicon: {
src: './tenant-assets/opentown-libraries-favicon.png',
},
}
};