Skip to content

Commit 448456d

Browse files
minor changes but build issue seems to be node version related
1 parent ce5c019 commit 448456d

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

website/docusaurus.config.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const config: Config = {
6565
// Please change this to your repo.
6666
// Remove this to remove the "edit this page" links.
6767
editUrl:
68-
'https://github.com/overture-stack/OvertureDev',
68+
'https://github.com/overture-stack/docs',
6969
},
7070
// Please change this to your repo.
7171
blog: {
@@ -76,7 +76,7 @@ const config: Config = {
7676
},
7777
// Remove this to remove the "edit this page" links.
7878
editUrl:
79-
'https://github.com/overture-stack/tree/main/packages/create-docusaurus/templates/shared/',
79+
'https://github.com/overture-stack/docs/tree/main/packages/create-docusaurus/templates/shared/',
8080
// Useful options to enforce blogging best practices
8181
onInlineTags: 'warn',
8282
onInlineAuthors: 'warn',
@@ -159,13 +159,13 @@ const config: Config = {
159159
theme: prismThemes.github,
160160
darkTheme: prismThemes.dracula,
161161
},
162-
// algolia: {
163-
// application ID provided by Algolia
164-
// appId: 'E70KV3D0W2',
165-
// Public API key
166-
// apiKey: '296266a1c98ef42e60e0d9cb2f0c48a7',
167-
// indexName: 'overtureDocs',
168-
// },
162+
algolia: {
163+
// application ID provided by Algolia
164+
appId: 'E70KV3D0W2',
165+
// Public API key
166+
apiKey: '296266a1c98ef42e60e0d9cb2f0c48a7',
167+
indexName: 'overtureDocs',
168+
},
169169
} satisfies Preset.ThemeConfig,
170170
};
171171

website/src/theme/MDXComponents.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ import MDXComponents from '@theme-original/MDXComponents';
33
import Tabs from '@theme/Tabs';
44
import TabItem from '@theme/TabItem';
55
import DocCardList from '@theme/DocCardList'
6-
import SwaggerAPIDoc from '../components/SwaggerAPIDoc';
7-
86

97
const components: typeof MDXComponents & {
108
Tabs: ComponentType<any>;
@@ -15,7 +13,6 @@ const components: typeof MDXComponents & {
1513
Tabs,
1614
TabItem,
1715
DocCardList,
18-
SwaggerAPIDoc,
1916
};
2017

2118
export default components;

0 commit comments

Comments
 (0)