forked from danilowoz/create-content-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
30 lines (30 loc) · 855 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
module.exports = {
pathPrefix: '/create-content-loader',
siteMetadata: {
title: `Create Content Loader`,
description: `It's a SVG component to create placeholder loading, like Facebook cards loading or also known as skeleton UI.`,
author: `@danilowoz`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Create Content Loader`,
short_name: `Create Content Loader`,
start_url: `/`,
background_color: `#000`,
theme_color: `#eee`,
display: `minimal-ui`,
icon: `src/assets/favicon.png`, // This path is relative to the root of the site.
},
},
{
resolve: `gatsby-plugin-google-analytics`,
options: {
trackingId: 'UA-111272895-1',
},
},
`gatsby-plugin-offline`,
],
}