13 lines
444 B
Plaintext
13 lines
444 B
Plaintext
|
<script>
|
||
|
window.addEventListener('DOMContentLoaded', (event) => {
|
||
|
window.searchConfig = {
|
||
|
appId: '<%- conf.appId %>',
|
||
|
apiKey: '<%- conf.apiKey %>',
|
||
|
indexName: '<%- conf.indexName %>',
|
||
|
hitsPerPage: 100,
|
||
|
};
|
||
|
utils.js('https://gcore.jsdelivr.net/algoliasearch/3/algoliasearch.min.js', { defer: true });
|
||
|
utils.js('/js/search/algolia-search.js', { defer: true });
|
||
|
});
|
||
|
</script>
|
||
|
|