-
Notifications
You must be signed in to change notification settings - Fork 49
/
config.ts
50 lines (49 loc) · 1.61 KB
/
config.ts
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
const siteConfig = {
gatsby: {
pathPrefix: '/dataguide',
siteUrl: 'https://www.prisma.io',
},
redirects: [],
header: {
logoLink: '/',
title: "Prisma's Data Guide - Educational articles to make databases more approachable",
search: {
indexName: process.env.GATSBY_ALGOLIA_INDEX_NAME,
algoliaAppId: process.env.GATSBY_ALGOLIA_APP_ID,
algoliaSearchKey: process.env.GATSBY_ALGOLIA_SEARCH_KEY,
algoliaAdminKey: process.env.GATSBY_ALGOLIA_ADMIN_API_KEY,
},
},
siteMetadata: {
title: "Prisma's Data Guide - Educational articles to make databases more approachable",
description:
'Learn how databases work, how to choose the right one, and how to use databases with your applications to their full potential.',
keywords: "Prisma's Data Guide, prisma, database, mysql, postgres, postgresql, dataguide",
docsLocation: 'https://github.com/prisma/dataguide/tree/master/content',
twitter: {
site: '@prisma',
creator: '@prisma',
image: '/social/docs-social.png',
},
og: {
site_name: "Prisma's Data Guide",
type: 'website',
image: {
alt: "Prisma's Data Guide",
height: '630',
type: 'image/png',
url: '/social/docs-social.png', //replace social image
width: '1200',
},
},
},
sidebar: {
tablet_menu_split: ['04-datamodeling'], // Slugs for top level folders which should appear in right pane on tablet
},
footer: {
newsletter: {
text: "Sign up to get notified by email when new content is added to Prisma's Data Guide.",
},
},
}
export default siteConfig