-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
44 lines (43 loc) · 1.01 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
36
37
38
39
40
41
42
43
44
const config = require("./data/SiteConfig");
const path = require(`path`)
module.exports = {
siteMetadata: {
title: config.siteTitle,
siteUrl: config.siteUrl
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-offline',
'gatsby-plugin-sass',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
"gatsby-plugin-sitemap",
{
resolve: "gatsby-plugin-manifest",
options: {
name: config.siteTitle,
short_name: config.siteTitleShort,
description: config.siteDescription,
background_color: config.backgroundColor,
theme_color: config.themeColor,
display: "minimal-ui",
icon: 'src/images/mountain.png'
}
},
{
resolve: 'gatsby-plugin-web-font-loader',
options: {
google: {
families: ['Archivo']
}
}
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "assets",
path: path.join(__dirname, `src`, `images`),
}
},
],
}