Use DocSearch in non prod env too

pull/4606/head
FlipWarthog 2023-10-12 20:35:29 -04:00
parent 9efbcd3f77
commit 53ee29d083
1 changed files with 17 additions and 1 deletions

View File

@ -186,7 +186,23 @@ export default {
container: '#docsearch',
appId: '01CMUF4W4R',
indexName: 'primevue',
apiKey: '9bb5939e36897b26ff7de5b7b64d6c43'
apiKey: '9bb5939e36897b26ff7de5b7b64d6c43',
transformItems: (items) => {
const isLocalhost = process.env.NODE_ENV !== 'production';
return items.map((item) => {
if (isLocalhost) {
const url = new URL(item.url);
url.protocol = window.location.protocol;
url.hostname = window.location.hostname;
url.port = window.location.port;
item.url = url.toString();
}
return item;
});
}
});
},
beforeUnmount() {