mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-03-07 20:05:05 +00:00
19 lines
656 B
TypeScript
19 lines
656 B
TypeScript
import { DocSearch } from '@docsearch/react';
|
|
|
|
import '@docsearch/css';
|
|
|
|
export const Search: React.FC = () => {
|
|
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} transformItems={
|
|
items => items.map(item => ({
|
|
...item,
|
|
url: item.url.replace('https://melodious-puffpuff-8e1109.netlify.app', ''),
|
|
}))
|
|
} />
|
|
);
|
|
};
|