forked from app-generator/gatsby-material-kit-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
28 lines (28 loc) · 821 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
module.exports = {
pathPrefix: `/mini-gatsbyv2-material-kit-react`,
siteMetadata: {
title: 'Gatsby - Open-Source app with Material Design',
description: `Open-Source Gatsby Starter`,
author: `@Sm0keDev`,
siteUrl: `https://gatsby-material-kit-react.appseed.us`,
},
plugins: [
'gatsby-plugin-resolve-src',
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-plugin-offline',
'gatsby-plugin-sass',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'gatsby-starter-default',
short_name: 'starter',
start_url: '/',
background_color: '#663399',
theme_color: '#663399',
display: 'minimal-ui',
icon: 'src/assets/img/favicon.png', // This path is relative to the root of the site.
},
},
],
}