forked from g0v-network/training.g0v.network
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
43 lines (42 loc) · 1.14 KB
/
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
42
43
const path = require('path')
module.exports = {
siteMetadata: {
title : 'vTaiwan Open Consultation & Participation Officers Training',
description: `Two-day training in New York City June 11-12 2018. Learn vTaiwan and Participatory Officer training from Audrey Tang, Digital Minister of Taiwan and members of PDIS Team. Limited space.`
},
plugins: [
`gatsby-plugin-netlify-cms`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: path.join(__dirname, `blog`),
name: 'markdown-pages',
},
},
`gatsby-plugin-react-helmet`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `json-data`,
path: path.join(__dirname, `data`),
},
},
`gatsby-transformer-yaml`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: path.join(__dirname, `data`),
name: `yaml-content`,
},
},
`gatsby-transformer-remark`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: path.join(__dirname, `content`),
name: `markdown-content`,
},
},
],
}