-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
77 lines (73 loc) · 2.13 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
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
const prismicHtmlSerializer = require('./src/gatsby/htmlSerializer')
const website = require('./config/website')
const pathPrefix = website.pathPrefix === '/' ? '' : website.pathPrefix
module.exports = {
/* General Information */
pathPrefix: website.pathPrefix,
siteMetadata: {
siteUrl: website.url + pathPrefix, // For gatsby-plugin-sitemap
pathPrefix,
title: website.title,
titleAlt: website.titleAlt,
description: website.description,
banner: website.logo,
headline: website.headline,
siteLanguage: website.siteLanguage,
ogLanguage: website.ogLanguage,
author: website.author,
twitter: website.twitter,
facebook: website.facebook,
},
/* Plugins */
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-emotion',
{
resolve: 'gatsby-source-prismic',
options: {
repositoryName: 'remotepetga',
accessToken: `${process.env.API_KEY}`,
// Get the correct URLs in blog posts
linkResolver: () => post => `/${post.uid}`,
// PrismJS highlighting for labels and slices
htmlSerializer: () => prismicHtmlSerializer,
// Remove this config option if you only have one language in your Prismic repository
},
},
'gatsby-plugin-lodash',
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-plugin-typography',
options: {
pathToConfigModule: 'config/typography.js',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: website.googleAnalyticsID,
},
},
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: website.title,
short_name: website.titleAlt,
description: website.description,
start_url: pathPrefix,
background_color: website.backgroundColor,
theme_color: website.themeColor,
display: 'standalone',
icon: website.favicon,
},
},
// Must be placed at the end
'gatsby-plugin-offline',
'gatsby-plugin-netlify',
],
}