-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
34 lines (34 loc) · 1.01 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
module.exports = {
siteMetadata: {
title: `Inter Protocol`,
description: ``,
twitterUsername: `@inter_protocol`,
image: '/og-image.png',
siteUrl: `https://interprotocol.gatsbyjs.io/`,
},
plugins: [
// You can have multiple instances of this plugin
// to read source nodes from different locations on your
// filesystem.
//
// The following sets up the Jekyll pattern of having a
// "pages" directory for Markdown files and a "data" directory
// for `.json`, `.yaml`, `.csv`.
{
resolve: `gatsby-source-filesystem`,
options: {
name: `pages`,
path: `${__dirname}/src/pages/`,
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
icon: 'src/images/favicon.png',
},
},
"gatsby-plugin-sass",
'gatsby-plugin-postcss',
`gatsby-plugin-react-helmet`
],
}