We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b247303 commit a0a46bdCopy full SHA for a0a46bd
.github/main.workflow
@@ -18,5 +18,5 @@ action "Build and push docs" {
18
needs = ["Update version"]
19
uses = "clay/docusaurus-github-action@master"
20
args="deploy"
21
- secrets = ["DEPLOY_SSH_KEY"]
+ secrets = ["DEPLOY_SSH_KEY", "ALGOLIA_API_KEY"]
22
}
website/siteConfig.js
@@ -54,7 +54,12 @@ const siteConfig = {
54
55
// Open Graph and Twitter card images.
56
ogImage: '',
57
- twitterImage: ''
+ twitterImage: '',
58
+ algolia: {
59
+ apiKey: process.env.ALGOLIA_API_KEY,
60
+ indexName: 'TBD',
61
+ algoliaOptions: {} // Optional, if provided by Algolia
62
+ }
63
};
64
65
module.exports = siteConfig;
0 commit comments