This repository has been archived by the owner on May 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
74 lines (69 loc) · 2.02 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
require('dotenv').config({
path: `.env`,
})
const prismicHtmlSerializer = require('./src/gatsby/htmlSerializer')
const prismicLinkResolver = require('./src/gatsby/linkResolver')
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,
banner: website.logo,
ogLanguage: website.ogLanguage,
author: website.author,
twitter: website.twitter,
facebook: website.facebook,
},
/* Plugins */
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-emotion',
'gatsby-plugin-catch-links',
{
resolve: 'gatsby-source-prismic',
options: {
repositoryName: 'newtelco-i18n',
accessToken: `${process.env.API_KEY}`,
// Get the correct URLs in blog posts
linkResolver: () => prismicLinkResolver,
// PrismJS highlighting for labels and slices
htmlSerializer: () => prismicHtmlSerializer,
},
},
'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',
],
}