36 lines
915 B
JavaScript
36 lines
915 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
title: `Skynet`,
|
|
description: `Skynet is a decentralized file sharing and content distribution protocol.`,
|
|
author: `Nebulous`,
|
|
siteUrl: `https://siasky.net`
|
|
},
|
|
plugins: [
|
|
`gatsby-plugin-sass`,
|
|
`gatsby-plugin-react-helmet`,
|
|
{
|
|
resolve: `gatsby-source-filesystem`,
|
|
options: {
|
|
name: `images`,
|
|
path: `${__dirname}/src/images`
|
|
}
|
|
},
|
|
`gatsby-transformer-sharp`,
|
|
`gatsby-plugin-sharp`,
|
|
`gatsby-plugin-robots-txt`,
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: `Skynet`,
|
|
short_name: `Skynet`,
|
|
start_url: `/`,
|
|
background_color: `#f1f7f2`,
|
|
theme_color: `#f1f7f2`,
|
|
display: `minimal-ui`,
|
|
icon: `src/images/logo.svg` // This path is relative to the root of the site.
|
|
}
|
|
},
|
|
`gatsby-plugin-remove-serviceworker`
|
|
]
|
|
};
|