This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
2020-02-20 16:35:07 +00:00
|
|
|
module.exports = {
|
|
|
|
siteMetadata: {
|
|
|
|
title: `Skynet`,
|
|
|
|
description: `Skynet is a decentralized file sharing and content distribution protocol.`,
|
2020-02-20 17:14:20 +00:00
|
|
|
author: `Nebulous`,
|
2020-02-21 10:09:38 +00:00
|
|
|
siteUrl: `https://siasky.net`
|
2020-02-20 16:35:07 +00:00
|
|
|
},
|
|
|
|
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`,
|
2020-02-20 17:14:20 +00:00
|
|
|
`gatsby-plugin-robots-txt`,
|
2020-02-20 16:35:07 +00:00
|
|
|
{
|
|
|
|
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.
|
|
|
|
}
|
2020-02-21 11:07:20 +00:00
|
|
|
},
|
2020-02-27 10:58:53 +00:00
|
|
|
`gatsby-plugin-remove-serviceworker`
|
2020-02-20 16:35:07 +00:00
|
|
|
]
|
|
|
|
};
|