-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
gatsby-config.js
45 lines (45 loc) · 1.16 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
module.exports = {
pathPrefix: '/api-playground',
siteMetadata: {
title: 'MetaMask JSON-RPC API',
description:
'This API lets you interact with an Ethereum Network via MetaMask',
logoUrl:
'https://raw.githubusercontent.com/MetaMask/brand-resources/master/SVG/metamask-fox.svg',
primaryColor: '#3f51b5', // material-ui primary color
secondaryColor: '#f50057', // material-ui secondary color
author: '',
menuLinks: [
{
name: 'Home',
link: '/',
ignoreNextPrev: true,
},
{
name: 'API Documentation',
link: '/api-documentation',
},
],
footerLinks: [
{
name: 'MetaMask',
link: 'https://metamask.io',
},
],
},
plugins: [
'@xops.net/gatsby-openrpc-theme',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'api-playground',
short_name: 'api-playground',
start_url: '/',
background_color: 'transparent',
theme_color: '#3f51b5',
display: 'minimal-ui',
icon: 'src/images/metamask-fox.svg', // This path is relative to the root of the site.
},
},
],
};