-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
58 lines (56 loc) · 1.4 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
var dotenv = require("dotenv");
dotenv.config();
const { spaceId, accessToken, snipcart } = process.env;
module.exports = {
siteMetadata: {
title: `Confluencia Solidaria`,
description: `Sitio para realizar pre-compras, para ayudar a negocios golpeados por la cuarentena.`,
author: `@rohitguptab`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-transformer-remark`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Confluencia Solidaria`,
short_name: `starter`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/confluencia-logo.png`,
},
},
{
resolve: "gatsby-source-contentful",
options: {
spaceId: `80yr746demjg`,
accessToken: `3Gsq-fudPzeki1GoIOTVVUWolMTqb6p2WBOwSIjT7ZU`
}
},
{
resolve: "gatsby-plugin-snipcartv3",
options: {
apiKey: snipcart,
autopop: true,
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// replace "UA-XXXXXXXXX-X" with your own Tracking ID
trackingId: "UA-162512217-1",
},
}
],
}