-
Notifications
You must be signed in to change notification settings - Fork 4
/
docusaurus.config.js
153 lines (149 loc) · 3.73 KB
/
docusaurus.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
const users = require('./showcase.json');
module.exports = {
title: 'IntelAGENT',
tagline: 'OHIP Billling',
url: 'http://www.intelagent.ca',
baseUrl: '/',
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',
favicon: 'img/favicon.png',
organizationName: 'akepecs', // Usually your GitHub org/user name.
projectName: 'docs', // Usually your repo name.
titleDelimiter: '-',
customFields: {
users,
},
themeConfig: {
navbar: {
title: 'IntelAGENT',
logo: {
alt: 'IntelAGENT Logo',
src: 'img/IntelAGENT-logo.svg',
href: 'https://www.intelagent.ca',
},
items: [
//{to: 'blog', label: 'Blog', position: 'left'},
{
href: 'http://www.health.gov.on.ca/en/pro/programs/ohip/bulletins/4000/bulletin_4000_mn.aspx',
label: 'Bulletins',
position: 'right',
},
{
href: 'https://www.health.gov.on.ca/en/pro/programs/ohip/sob/physserv/sob_master20200306.pdf',
label: 'Schedule of Benefits',
position: 'right',
},
],
},
footer: {
style: 'dark',
links: [
{
title: 'Guides',
items: [
{
label: 'Installation',
to: '/docs/',
},
{
label: 'Designation',
to: '/docs/getting-started/designation',
},
{
label: 'MOH Group Codes',
to: '/docs/getting-started/moh_group',
},
],
},
{
title: 'Pricing',
items: [
{
label: 'Self-Service',
href: '/docs/pricing/self-service',
},
{
label: 'Full-Service',
href: '/docs/pricing/full-service',
},
{
label: 'Pay As You Go',
href: '/docs/pricing/pay-as-you-go',
},
],
},
{
title: 'Features',
items: [
{
label: 'Health Card Validation',
href: '/docs/features/hcv',
},
{
label: 'Quick Copy',
to: '/docs/features/quick-copy',
},
{
label: 'Favourties',
to: '/docs/features/favourites',
},
],
},
{
title: 'More',
items: [
{
label: 'Product Comparison',
href: '/docs/comparison',
},
{
label: 'Payment',
href: '/docs/faq/payment',
},
{
label: 'Privacy',
href: '/privacy',
},
],
}
],
copyright: `Copyright © ${new Date().getFullYear()} IntelAGENT Billing`,
},
},
presets: [
[
'@docusaurus/preset-classic',
{
docs: {
sidebarPath: require.resolve('./sidebars.js'),
// Please change this to your repo.
// Removes the Home Page
routeBasePath: '/docs',
},
blog: {
showReadingTime: true,
// Please change this to your repo.
editUrl:
'https://github.com/facebook/docusaurus/edit/master/website/blog/',
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
},
sitemap: {
changefreq: 'weekly',
priority: 0.5,
trailingSlash: false,
},
},
],
],
plugins: [
'@docusaurus/plugin-ideal-image',
[
require.resolve('docusaurus-gtm-plugin'),
{
id: process.env.GTM, // GTM Container ID with Environment Variable
}
]
],
};