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.
skynet-webportal/packages/website/gatsby-config.js

76 lines
2.0 KiB
JavaScript
Raw Normal View History

2021-03-31 11:24:05 +00:00
const { defaultIcons } = require("gatsby-plugin-manifest/common");
2021-03-23 12:07:19 +00:00
module.exports = {
siteMetadata: {
2021-03-31 11:24:05 +00:00
title: `Skynet`,
description: `Skynet is a decentralized file sharing and content distribution protocol`,
author: `Skynet Labs Inc`,
siteUrl: `https://siasky.net`,
image: `https://siasky.net/icons/icon-512x512.png`,
2021-03-23 12:07:19 +00:00
},
plugins: [
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
2021-03-25 10:44:52 +00:00
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src/`,
},
},
2021-03-31 11:24:05 +00:00
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data/`,
},
},
`gatsby-plugin-postcss`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
2021-03-23 12:07:19 +00:00
`gatsby-plugin-sharp`,
`gatsby-plugin-react-svg`,
2021-03-31 11:24:05 +00:00
`gatsby-plugin-robots-txt`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
`gatsby-transformer-yaml`,
`gatsby-transformer-remark`,
2021-03-23 12:07:19 +00:00
{
resolve: `gatsby-plugin-manifest`,
options: {
2021-03-31 11:24:05 +00:00
name: `Skynet`,
short_name: `Skynet`,
2021-03-23 12:07:19 +00:00
start_url: `/`,
2021-03-31 11:24:05 +00:00
background_color: `#f1f7f2`,
theme_color: `#f1f7f2`,
2021-03-23 12:07:19 +00:00
display: `minimal-ui`,
2021-03-31 11:24:05 +00:00
icon: `src/images/logo.svg`, // This path is relative to the root of the site.
icons: [
...defaultIcons,
// when we're serving content from the portal on our pathnames that do not have
// favicon defined (basically all non-html content), we want the browsers to be
// able to fall back to favicon.ico (firefox does that)
{
src: `favicon.ico`,
sizes: `32x32`,
type: `image/x-icon`,
},
],
},
},
{
resolve: "gatsby-plugin-matomo",
options: {
siteId: 3,
matomoUrl: "https://surveillance.sia.tech",
siteUrl: "https://siasky.net",
2021-03-23 12:07:19 +00:00
},
},
],
2021-03-25 10:44:52 +00:00
};