forked from opensource254/covid-19-web-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
35 lines (34 loc) · 1.07 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
module.exports = {
siteMetadata: {
title: `Global COVID-19 Tracker`,
description: `Track coronavirus status globally - Get country-wise value in real-time. And you stay safe!`,
author: `Rakesh Mandal`,
twittercreator: `@rkalways_`,
socialthumb: `https://i.ibb.co/QfD7VC2/og.png?v=1`,
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `COVID-19 Tracker`,
short_name: `COVID-19 Tracker`,
description: `Global Coronavirus Outbreak Tracker`,
icon: `src/images/favicon.png`,
start_url: `/`,
background_color: `#EFF1F6`,
theme_color: `#02d587`,
display: `standalone`,
},
},
{
resolve: `gatsby-plugin-offline`,
options: {
workboxConfig: {
globPatterns: [`**/*`],
},
},
},
],
}