-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
105 lines (99 loc) · 2.94 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
94
95
96
97
98
99
100
101
102
103
104
105
/* eslint-disable no-undef */
/**
* 👋 Hey there!
* This file is the starting point for your new WordPress/Gatsby site! 🚀
* For more information about what this file is and does, see
* https://www.gatsbyjs.com/docs/gatsby-config/
*
*/
module.exports = {
/**
* Adding plugins to this array adds them to your Gatsby site.
*
* Gatsby has a rich ecosystem of plugins.
* If you need any more you can search here: https://www.gatsbyjs.com/plugins/
*/
plugins: [
{
/**
* First up is the WordPress source plugin that connects Gatsby
* to your WordPress site.
*
* visit the plugin docs to learn more
* https://github.com/gatsbyjs/gatsby/blob/master/packages/gatsby-source-wordpress/README.md
*
*/
resolve: "gatsby-source-wordpress",
options: {
// the only required plugin option for WordPress is the GraphQL url.
url: process.env.WPGRAPHQL_URL || "http://wp.thelemonpress.co.uk/index.php?graphql",
},
},
/**
* We need this plugin so that it adds the "File.publicURL" to our site
* It will allow us to access static url's for assets like PDF's
*
* See https://www.gatsbyjs.org/packages/gatsby-source-filesystem/ for more info
*/
{
resolve: "gatsby-source-filesystem",
options: {
name: "assets",
path: `${__dirname}/content/assets`,
},
},
/**
* The following two plugins are required if you want to use Gatsby image
* See https://www.gatsbyjs.com/docs/gatsby-image/#setting-up-gatsby-image
* if you're curious about it.
*/
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
{
// See https://www.gatsbyjs.com/plugins/gatsby-plugin-manifest/?=gatsby-plugin-manifest
resolve: "gatsby-plugin-manifest",
options: {
name: "Gatsby Starter WordPress Blog",
short_name: "GatsbyJS & WP",
start_url: "/",
background_color: "#ffffff",
theme_color: "#663399",
display: "minimal-ui",
icon: "content/assets/lplogo.png",
},
},
// See https://www.gatsbyjs.com/plugins/gatsby-plugin-react-helmet/?=gatsby-plugin-react-helmet
"gatsby-plugin-react-helmet",
/**
* this (optional) plugin enables Progressive Web App + Offline functionality
* To learn more, visit: https://gatsby.dev/offline
*/
// `gatsby-plugin-offline`,
{
resolve: "gatsby-plugin-typescript",
options: {
isTSX: true,
allExtensions: true,
},
},
{
resolve: "gatsby-plugin-image",
},
{
resolve: "gatsby-source-custom-api",
options: {
url: "https://lemon-press-issuu.herokuapp.com/issues",
rootKey: "issues",
schemas: {
issues: `
username: String
docname: String
epoch: String
documentId: String
title: String
`,
},
},
},
],
};