-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
gatsby-config.js
41 lines (40 loc) · 959 Bytes
/
gatsby-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
31
32
33
34
35
36
37
38
39
40
41
const path = require('path');
module.exports = ({
notesDirectory = 'content/',
notesFileExtensions = ['.md', '.mdx'],
noteTemplate = path.join(__dirname, 'src/templates/note.js'),
additionalNoteTypes = {},
rootPath = '/',
rootNote = 'about',
linkifyHashtags = false,
hideDoubleBrackets = true,
mdxOtherwiseConfigured = false,
themeUIOtherwiseConfigured = false,
generateRSS = false,
rssPath = '/rss.xml',
rssTitle = 'My Notes',
}) => ({
siteMetadata: {
title: 'My Notes',
},
plugins: [
{
resolve: '@aengusm/gatsby-theme-brain',
options: {
notesDirectory,
notesFileExtensions,
noteTemplate,
additionalNoteTypes,
rootPath,
rootNote,
linkifyHashtags,
hideDoubleBrackets,
mdxOtherwiseConfigured,
generateRSS,
rssPath,
rssTitle,
},
},
!themeUIOtherwiseConfigured && `gatsby-plugin-theme-ui`,
],
});