We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3aeccd1 commit 18aef8eCopy full SHA for 18aef8e
2 files changed
.github/main.workflow
@@ -11,5 +11,5 @@ workflow "Deploy to GitHub Pages" {
11
action "Build and push docs" {
12
needs = ["Filter branch"]
13
uses = "clay/docusaurus-github-action/build_deploy@master"
14
- secrets = ["DEPLOY_SSH_KEY"]
+ secrets = ["DEPLOY_SSH_KEY", "ALGOLIA_API_KEY"]
15
}
website/siteConfig.js
@@ -54,7 +54,12 @@ const siteConfig = {
54
55
// Open Graph and Twitter card images.
56
ogImage: '#99D3DF',
57
- twitterImage: '#99D3DF'
+ twitterImage: '#99D3DF',
58
+ algolia: {
59
+ apiKey: process.env.ALGOLIA_API_KEY,
60
+ indexName: 'TBD',
61
+ algoliaOptions: {} // Optional, if provided by Algolia
62
+ }
63
64
// Show documentation's last contributor's name.
65
// enableUpdateBy: true,
0 commit comments