-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
68 lines (66 loc) · 1.77 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
const path = require('path')
const config = require('./config/site')
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: config.siteTitle,
description: config.siteDescription,
author: config.author,
siteURL: config.siteURL,
},
plugins: [
'gatsby-plugin-eslint',
`gatsby-plugin-react-helmet`,
`gatsby-plugin-emotion`,
{
resolve: 'gatsby-plugin-root-import',
options: {
'@': path.join(__dirname, 'src'),
'@components': path.join(__dirname, 'src/components'),
'@styles': path.join(__dirname, 'src/styles'),
'@types': path.join(__dirname, 'src/types'),
'@hooks': path.join(__dirname, 'src/hooks'),
config: path.join(__dirname, 'config'),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: 'gatsby-source-prismic-graphql',
options: {
repositoryName: `${process.env.PRISMIC_REPO_NAME}`,
accessToken: `${process.env.PRISMIC_API_KEY}`,
linkResolver: ({ node, key, value }) => post => `/${post.uid}`,
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: process.env.GOOGLE_ANALYTICS,
anonymize: false,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: config.siteTitle,
short_name: config.siteTitle,
start_url: `/`,
background_color: config.backgroundColor,
theme_color: config.themeColor,
display: `fullscreen`,
icon: config.siteLogo,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-offline`,
],
}