-
Notifications
You must be signed in to change notification settings - Fork 94
/
config.js
30 lines (29 loc) · 847 Bytes
/
config.js
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
const config = {
gatsby: {
// uncomment this if not hosted at root
//pathPrefix: '/node-postgres-docs/',
pathPrefix: '/',
siteUrl: 'https://node-postgres.com',
gaTrackingId: 'UA-100138145-1',
},
header: {
logo: '',
title: 'node-postgres',
githubUrl: 'https://github.com/brianc/node-postgres',
helpUrl: '',
tweetText: '',
links: [{ text: '', link: '' }],
},
sidebar: {
forcedNavOrder: ['/', '/announcements', '/features', '/guides', '/api'],
links: [{ text: '', link: '' }],
},
siteMetadata: {
title: 'node-postgres',
description: 'Documentation for node-postgres, the postgres database client for node.js',
ogImage: null,
docsLocation: 'https://github.com/brianc/node-postgres-docs/tree/master/content',
favicon: '/favicon.ico',
},
}
module.exports = config