debug: algolia demo keys
This commit is contained in:
parent
454ce1cdb3
commit
3b0d117e89
@ -3,14 +3,16 @@ import { DocSearch } from '@docsearch/react';
|
||||
import '@docsearch/css';
|
||||
|
||||
export const Search: React.FC = () => {
|
||||
// TODO: Replace Algolia test keys with '' when API key available for this repo (place in .env)
|
||||
const appId = process.env.NEXT_PUBLIC_ALGOLIA_APP_ID || 'R2IYF7ETH7'
|
||||
const apiKey = process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY || '599cec31baffa4868cae4e79f180729b'
|
||||
const indexName = process.env.NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME || 'docsearch'
|
||||
const appId = process.env.NEXT_PUBLIC_ALGOLIA_APP_ID || ''
|
||||
const apiKey = process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY || ''
|
||||
const indexName = process.env.NEXT_PUBLIC_ALGOLIA_BASE_SEARCH_INDEX_NAME || ''
|
||||
|
||||
// TODO: Replace Algolia test keys with above env vars when ready
|
||||
return (
|
||||
<DocSearch
|
||||
appId={appId}
|
||||
apiKey={apiKey}
|
||||
indexName={indexName} />
|
||||
appId="R2IYF7ETH7"
|
||||
apiKey="599cec31baffa4868cae4e79f180729b"
|
||||
indexName="docsearch"
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user