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 5ca3349 commit 567723bCopy full SHA for 567723b
src/partials/body-end-scripts.hbs
@@ -4,13 +4,17 @@
4
<script async src="{{{uiRootPath}}}/js/vendor/zooming.js"></script>
5
6
<script src="https://cdn.jsdelivr.net/npm/@docsearch/js@3"></script>
7
+{{#with site.keys}}
8
+ {{#if (and algoliaAppId algoliaIndexName algoliaApiKey)}}
9
<script>
10
docsearch({
11
container: '#docsearch',
- appId: '2ELPRZR9UC',
- indexName: 'crawler_docsearch-astra',
12
+ appId: '{{algoliaAppId}}',
13
+ indexName: '{{algoliaIndexName}}',
14
{{!-- This is the public API key which can be safely used in frontend code. --}}
- apiKey: '1f4acbf51d118e4137e9a63b38bd8456',
15
+ apiKey: '{{algoliaApiKey}}',
16
})
17
</script>
18
+ {{/if}}
19
+{{/with}}
20
{{> intercom}}
0 commit comments