-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
40 lines (39 loc) · 1.12 KB
/
gatsby-config.js
File metadata and controls
40 lines (39 loc) · 1.12 KB
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
36
37
38
39
40
const theme = require('./src/components/ThemeProvider/theme');
module.exports = {
siteMetadata: {
title: 'Away from Javascript',
siteUrl: 'http://away-from-javascript.netlify.com',
},
plugins: [
'gatsby-plugin-sitemap',
'gatsby-plugin-react-helmet',
{
resolve: 'gatsby-source-feed',
options: {
feedURL: 'https://rss.simplecast.com/podcasts/10278/rss',
},
},
{
resolve: 'gatsby-plugin-google-analytics',
options: {
trackingId: 'UA-64555470-9',
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Away from Javascript',
short_name: 'AFJ',
start_url: '/',
background_color: theme.Lighter,
theme_color: theme.Yellow,
// Enables "Add to Homescreen" prompt and disables browser UI (including back button)
// see https://developers.google.com/web/fundamentals/web-app-manifest/#display
orientation: 'natural',
display: 'standalone',
icon: 'static/logo.png', // This path is relative to the root of the site.
},
},
'gatsby-plugin-offline',
],
};