forked from CosmosContracts/old-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
38 lines (38 loc) · 1.25 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
module.exports = {
siteMetadata: {
title: 'Juno',
titleTemplate: 'Juno - %s',
keywords: ['Juno'],
description: 'Juno is an interoperable smart contract network and a zone part of the Cosmos Network. Highly scalable, robust, secure and easy to deploy!',
url: 'https://junochain.com',
image: '/assets/logos/logo_512x512.png',
},
pathPrefix: '__GATSBY_IPFS_PATH_PREFIX__',
plugins: [
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Juno',
short_name: 'Juno',
start_url: '.',
background_color: '#000000',
theme_color: '#000000',
display: 'standalone',
icons: [
{
src: 'favicon.ico',
sizes: '64x64 32x32 24x24 16x16 192x192',
type: 'image/x-icon',
},
{
src: 'assets/logos/logo_512x512.png',
type: 'image/png',
sizes: '512x512',
},
],
},
},
'gatsby-plugin-offline',
'gatsby-plugin-ipfs',
],
};