forked from FrederikBolding/chainlist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
39 lines (39 loc) · 1.1 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
/** @type {import('gatsby').GatsbyConfig} */
module.exports = {
siteMetadata: {
title: `Chainlist`,
siteUrl: `https://chainlist.wtf/`,
author: "@frederikbolding",
description:
"A list of EVM-based chains that also allows you to add chains to your favorite Web3 wallet.",
},
plugins: [
"gatsby-plugin-emotion",
"gatsby-plugin-react-helmet",
"gatsby-plugin-netlify",
{
// For `gatsby-transformer-json` to work, `gatsby-source-filesystem` needs to be loaded. This
// plugin requires a specific folder to be set however, so here we just specify the pages
// folder as a dummy folder.
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: 'src/pages'
}
},
"gatsby-transformer-json",
"gatsby-plugin-sharp",
"gatsby-plugin-image",
"gatsby-transformer-sharp",
{
resolve: "@chakra-ui/gatsby-plugin",
options: {
/**
* @property {boolean} [resetCSS=true]
* if false, this plugin will not use `<CSSReset />
*/
resetCSS: true,
},
},
],
};