-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcorndocs.config.js
More file actions
36 lines (35 loc) · 880 Bytes
/
corndocs.config.js
File metadata and controls
36 lines (35 loc) · 880 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
36
/** @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: "dev_fosscu",
},
project: {
name: "FOSSCU",
url: "https://docs.fosscu.org",
github: {
repo: "https://github.com/foss-community/community-hub/",
usesMain: false,
},
logo: {
src: "/static/logo.svg",
alt: "FOSSCU Logo",
size: [30, 30],
},
mainScreen: {
showSearch: true,
showSelection: true,
homePage: {
custom: {
path: "index",
},
title: "FOSSCU Community Hub",
tagLine:
"Collaborate, Learn, Build Together",
},
},
},
};