generated from solacecommunity/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
35 lines (35 loc) · 882 Bytes
/
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
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `Solace Event Feeds`,
siteUrl: `https://www.feeds.solace.dev`,
description: `A collection of feeds for Solace PubSub+`,
author: `@SolaceDevs`,
},
plugins: [
`gatsby-plugin-sitemap`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`Open Sans\:300,400,600`, // you can also specify font weights and styles
],
display: 'swap',
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Solace Event Feeds`,
short_name: `SolaceFeeds`,
start_url: `/`,
icon: `static/favicon.ico`, // This path is relative to the root of the site.
},
},
],
};