-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
47 lines (47 loc) · 1.26 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
module.exports = {
siteMetadata: {
title: `Minden Baptist Church`,
author: {
name: `Minden Baptist Church`,
summary: `Minden Baptist is a contemporary, friendly and family oriented congregation with ministries to all demographics.`,
},
description: `Minden Baptist is a contemporary, friendly and family oriented congregation with ministries to all demographics.`,
siteUrl: `https://mindenbaptist.org/`,
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/pages/`,
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Montserrat\:400,600,700,800,900`],
display: "swap",
},
},
{
resolve: "gatsby-plugin-robots-txt",
options: {
host: "https://mindenbaptist.org",
sitemap: "https://mindenbaptist.org/sitemap.xml",
policy: [{ userAgent: "*", allow: "/" }],
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-fontawesome-css`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-purgecss`,
options: {
printRejected: true,
develop: true,
},
},
],
}