-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
36 lines (33 loc) · 972 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
/**
* 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: `LifePay App`,
siteUrl: `https://www.lifepay.app`,
author: "@LifeWordNation",
description: `LifeWord Nation`,
keywords: `Payments Gates, WeChat Pay, AliPay, PayPal, Bank Transfer`,
image: "/Images/Picture-Cover.jpg", // Path to your image you placed in the 'static' folder
twitterUsername: "@PenielKatombe",
},
plugins: [
'gatsby-plugin-postcss',
`gatsby-plugin-image`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-contentful`,
options: {
spaceId: process.env.CONTENTFUL_SPACE_ID,
// Learn about environment variables: https://gatsby.dev/env-vars
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN,
},
},
],
}