We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f32614 commit a759c87Copy full SHA for a759c87
1 file changed
docs/.vitepress/config.mjs
@@ -40,13 +40,10 @@ const sidebar = {
40
],
41
};
42
43
-// grab from process.env once this is building on netlify
44
const algolia = {
45
- apiKey: '',
46
- indexName: '',
47
- searchParameters: {
48
- facetFilters: [''],
49
- },
+ apiKey: process.env.API_KEY,
+ appId: process.env.APP_ID,
+ indexName: 'fakerjs',
50
51
52
const description =
@@ -111,7 +108,6 @@ export default defineConfig({
111
108
editLinkText: 'Suggest changes to this page',
112
109
nav,
113
110
sidebar,
114
- // TODO 2022-03-06: https://github.com/faker-js/faker/issues/222
115
- // algolia,
+ algolia,
116
},
117
});
0 commit comments