forked from galaxyproject/galaxy_mentor_network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgridsome.config.js
36 lines (34 loc) · 932 Bytes
/
gridsome.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
// This is where project configuration and plugin options are located.
// Learn more: https://gridsome.org/docs/config
// Changes here require a server restart.
// To restart press CTRL + C in terminal and run `gridsome develop`
module.exports = {
siteName: 'Galaxy Mentor Network',
siteDescription: 'Connecting Galaxy members (both new and existing) with Gmentors (Mentors within the Galaxy Community) in order to learn, improve proficiency and grow with Galaxy',
plugins: [
{
use: '@gridsome/source-filesystem',
options: {
typeName: 'Post',
path: 'content/blog/**/*.md',
}
},
{
use: "@gridsome/source-filesystem",
options: {
path: 'content/**/*.md',
typeName: "Insert",
},
},
],
templates: {
Post: '/blog/:year/:month/:day/:id',
},
transformers: {
remark: {
config: {
footnotes: true
}
},
},
}