Skip to content

Commit

Permalink
Develop algolia (#26)
Browse files Browse the repository at this point in the history
* add algolia theme config

* Update Algolia configuration with new appId, apiKey, and indexName
  • Loading branch information
naderzare authored Dec 24, 2024
1 parent 568aec1 commit ec6eb93
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,38 @@ const config: Config = {
crossorigin: 'anonymous',
},
],
algolia: {
// The application ID provided by Algolia
appId: '8RI3GOTRQI',

// Public API key: it is safe to commit it
apiKey: '88ae4eb7b0884d01c7df879791db55e5',

indexName: 'rcsoccersimio',

// Optional: see doc section below
contextualSearch: true,

// Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
externalUrlRegex: 'external\\.com|domain\\.com',

// Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs
replaceSearchResultPathname: {
from: '/docs/', // or as RegExp: /\/docs\//
to: '/docs/',
},

// Optional: Algolia search parameters
searchParameters: {},

// Optional: path for search page that enabled by default (`false` to disable it)
searchPagePath: 'search',

// Optional: whether the insights feature is enabled or not on Docsearch (`false` by default)
insights: false,

//... other Algolia params
},
} satisfies Preset.ThemeConfig,
markdown: {
mermaid: true,
Expand Down

0 comments on commit ec6eb93

Please sign in to comment.