Skip to content

Commit ead29c1

Browse files
authored
Merge pull request #11 from OpenDataEnsemble/docs/update-installation-guide-with-screenshots
fix: correct Docusaurus URL to match CNAME domain
2 parents 31a316d + 277706d commit ead29c1

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

docusaurus.config.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,20 @@ const config: Config = {
77
tagline: 'A symphony of data instruments to support your data collection and analysis.',
88
favicon: 'img/favicon.ico',
99

10-
url: 'https://docs.opendataensemble.org',
10+
url: 'https://opendataensemble.org',
1111
baseUrl: '/',
1212

1313
organizationName: 'opendataensemble',
1414
projectName: 'ode-docs',
1515

1616
onBrokenLinks: 'throw',
17-
onBrokenMarkdownLinks: 'warn',
17+
18+
markdown: {
19+
mermaid: false,
20+
hooks: {
21+
onBrokenMarkdownLinks: 'warn',
22+
},
23+
},
1824

1925
i18n: {
2026
defaultLocale: 'en',
@@ -29,6 +35,8 @@ const config: Config = {
2935
sidebarPath: './sidebars.ts',
3036
routeBasePath: '/docs',
3137
editUrl: 'https://github.com/OpenDataEnsemble/ode/tree/main/ode-docs/',
38+
remarkPlugins: [require('./plugins/fix-docs-links')],
39+
rehypePlugins: [require('./plugins/fix-docs-links-rehype')],
3240
},
3341
pages: {
3442
remarkPlugins: [],

0 commit comments

Comments
 (0)