-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
87 lines (85 loc) · 2.17 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
require('dotenv').config();
module.exports = {
siteMetadata: {
title: `Royal Ridges Retreat`,
author: {
name: `Joshua Tait`,
summary: `who lives and works in southern Washington and is the director for Royal Ridges Retreat.`,
},
description: `An epic horse based adventure retreat located on the flanks of Mount Saint Helens.`,
siteUrl: `https://royalridges.org`,
social: {
instagram: '/royalridges',
},
},
plugins: [
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-algolia`,
options: {
appId: process.env.GATSBY_ALGOLIA_APP_ID,
apiKey: process.env.ALGOLIA_ADMIN_KEY,
queries: require('./src/utils/algolia-queries'),
},
},
`gatsby-plugin-decap-cms`,
`gatsby-plugin-netlify`,
`gatsby-plugin-postcss`,
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/content/blog`,
name: `blog`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
path: `${__dirname}/src/images`,
name: `images`,
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: ['.mdx', '.md'],
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 630,
},
},
{
resolve: `gatsby-remark-responsive-iframe`,
options: {
wrapperStyle: `margin-bottom: 1.0725rem`,
},
},
`gatsby-remark-prismjs`,
`gatsby-remark-copy-linked-files`,
`gatsby-remark-smartypants`,
],
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Royal Ridges Retreat`,
short_name: `RoyalRidges`,
start_url: `/`,
background_color: `#ffffff`,
display: `minimal-ui`,
icon: `src/images/favicon.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-plugin-offline`,
options: {},
},
`gatsby-plugin-react-helmet`,
],
};
//I like turtles