-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgatsby-config.js
41 lines (39 loc) · 937 Bytes
/
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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
});
module.exports = {
/* Your site config here */
siteMetadata: {
title: "Candy Fluffs",
description: "Just a girl who likes to draw manga",
},
plugins: [
`gatsby-plugin-styled-components`,
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-transformer-remark`,
`gatsby-plugin-netlify`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-datocms`,
options: {
apiToken: process.env.API_TOKEN,
preview: false,
disableLiveReload: false,
},
},
{
resolve: 'gatsby-plugin-snipcart',
options: {
apiKey: 'MzFmNzVkYTktNWQzYy00MmQzLWE3MDctY2Q2OWIzOTJkMGIzNjM3NDMxNDcyNjQ0Nzc3NDEw',
autopop: false
}
}
],
}