forked from dishwasher-detergent/react-appwrite-docs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcorndocs.config.js
More file actions
35 lines (34 loc) · 900 Bytes
/
corndocs.config.js
File metadata and controls
35 lines (34 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/** @type {import('./types/ConfigType').Config} */
module.exports = {
darkMode: true,
search: {
algolia_admin_key: process.env.ALGOLIA_SEARCH_ADMIN_KEY,
algolia_app_id: process.env.NEXT_PUBLIC_ALGOLIA_APP_ID,
algolia_search_api_key: process.env.NEXT_PUBLIC_ALGOLIA_SEARCH_API_KEY,
algolia_index: "react_appwrite",
},
project: {
name: "React Appwrite",
url: "https://react-appwrite.org/",
github: {
repo: "https://github.com/sanny-io/react-appwrite",
usesMain: true,
},
logo: {
src: "/static/logo.png",
alt: "React Appwrite Logo",
size: [30, 30],
},
mainScreen: {
showSearch: true,
showSelection: true,
homePage: {
custom: {
path: "index",
},
title: "React Appwrite",
tagLine: "Gorgeous library for integrating React with Appwrite.",
},
},
},
};