-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
36 lines (35 loc) · 996 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
require("dotenv").config();
const path = require("path");
module.exports = {
siteMetadata: {
title: "Home Owners Association",
description: "A template website for Home Owner Associations",
author: "Cicero",
year: new Date().getFullYear(),
image: "./src/images/kristine-tanne-b8gOvy2kFVA-unsplash.jpg",
url: "https://frosty-torvalds-822eb0.netlify.app",
},
plugins: [
`gatsby-theme-material-ui`,
`gatsby-plugin-netlify`,
`gatsby-plugin-react-helmet`,
`gatsby-awesome-pagination`,
`gatsby-plugin-styled-components`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: path.join(__dirname, `src`, `images`),
},
},
{
resolve: `gatsby-source-contentful`,
options: {
spaceId: process.env.GATSBY_CONTENTFUL_SPACE_ID,
accessToken: process.env.GATSBY_CONTENTFUL_ACCESS_TOKEN,
},
},
],
};