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 22e5b9a commit e990fb4Copy full SHA for e990fb4
.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@master"
14
- secrets = ["DEPLOY_SSH_KEY"]
+ secrets = ["DEPLOY_SSH_KEY", "ALGOLIA_API_KEY"]
15
}
website/siteConfig.js
@@ -53,7 +53,12 @@ const siteConfig = {
53
54
// Open Graph and Twitter card images.
55
ogImage: '#99D3DF',
56
- twitterImage: '#99D3DF'
+ twitterImage: '#99D3DF',
57
+ algolia: {
58
+ apiKey: process.env.ALGOLIA_API_KEY,
59
+ indexName: 'TBD',
60
+ algoliaOptions: {} // Optional, if provided by Algolia
61
+ }
62
63
// Show documentation's last contributor's name.
64
// enableUpdateBy: true,
0 commit comments