diff options
| author | XhmikosR <[email protected]> | 2024-03-13 08:38:53 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2024-03-19 11:25:15 +0200 |
| commit | f7f0026e4af2fee210b664e145dfe55bd12b7deb (patch) | |
| tree | e8d89a44a7a50765cd496f495eb9617b47016d84 /site/assets/js | |
| parent | 45fe28c5a6ed88d1a661355349aed799a79ed0fe (diff) | |
| download | bootstrap-f7f0026e4af2fee210b664e145dfe55bd12b7deb.tar.xz bootstrap-f7f0026e4af2fee210b664e145dfe55bd12b7deb.zip | |
docs: move algolia config to hugo config
Diffstat (limited to 'site/assets/js')
| -rw-r--r-- | site/assets/js/search.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/site/assets/js/search.js b/site/assets/js/search.js index 95d920c44..48047abc8 100644 --- a/site/assets/js/search.js +++ b/site/assets/js/search.js @@ -10,6 +10,9 @@ */ import docsearch from '@docsearch/js' +// https://gohugo.io/hugo-pipes/js/#options +// eslint-disable-next-line import/no-unresolved +import { appId, apiKey, indexName } from '@params'; (() => { const searchElement = document.getElementById('docsearch') @@ -21,9 +24,9 @@ import docsearch from '@docsearch/js' const siteDocsVersion = searchElement.getAttribute('data-bd-docs-version') docsearch({ - apiKey: '3151f502c7b9e9dafd5e6372b691a24e', - indexName: 'bootstrap', - appId: 'AK7KMZKZHQ', + apiKey, + indexName, + appId, container: searchElement, searchParameters: { facetFilters: [`version:${siteDocsVersion}`] |
