forked from decaporg/decap-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
93 lines (91 loc) · 2.22 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const fs = require('fs');
const yaml = require('js-yaml');
require('dotenv').config({ path: '.env' })
const pkg = require('./package.json');
const staticConfig = yaml.load(fs.readFileSync('./site.yml', 'utf8'));
module.exports = {
siteMetadata: {
title: 'Decap CMS | Open-Source Content Management System',
description: 'Open source content management for your Git workflow',
siteUrl: pkg.homepage,
menu: staticConfig.menu,
},
plugins: [
{
resolve: 'gatsby-source-graphql',
options: {
typeName: 'GitHub',
fieldName: 'github',
url: 'https://api.github.com/graphql',
headers: {
Authorization: `Bearer ${process.env.GITHUB_TOKEN}`,
},
},
},
{
resolve: 'gatsby-plugin-google-tagmanager',
options: {
id: 'GTM-WQFP7W4H',
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Decap CMS',
short_name: 'Decap CMS',
start_url: '/',
background_color: '#ffffff',
theme_color: '#ffffff',
display: 'standalone',
icon: 'static/img/favicon/icon-512x512.png',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/content`,
name: 'content',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/data`,
name: 'data',
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
// prettier-ignore
plugins: [
'gatsby-remark-autolink-headers',
{
resolve: "gatsby-remark-external-links",
options: {
target: "_blank",
rel: "noopener noreferrer"
}
},
{
resolve: 'gatsby-remark-prismjs',
options: {
noInlineHighlight: true,
},
},
],
},
},
{
resolve: 'gatsby-plugin-decap-cms',
options: {
modulePath: `${__dirname}/src/cms/cms.js`,
},
},
'gatsby-transformer-yaml',
'gatsby-transformer-json',
'gatsby-plugin-emotion',
'gatsby-plugin-react-helmet',
'gatsby-plugin-catch-links',
],
};