-
Notifications
You must be signed in to change notification settings - Fork 16
/
gatsby-config.js
51 lines (51 loc) · 1.42 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
45
46
47
48
49
50
51
module.exports = {
siteMetadata: {
title: `Verizon Open Source`,
description: `Home of the Open Source Program Office and Verizon specific documentation for working with OSS`,
author: `opensource@verizon.com`,
siteUrl: `https://verizon.github.io`,
keywords: [`opensource`, `verizon`, `Verizon`, `OSS`, `OSPO`],
},
plugins: [
`gatsby-plugin-sitemap`,
{
resolve: `gatsby-plugin-robots-txt`,
options: {
host: `https://verizon.github.io`,
sitemap: `https://verizon.github.io/sitemap/sitemap-index.xml`,
policy: [{ userAgent: `*`, allow: `/` }],
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `fonts`,
path: `${__dirname}/src/fonts`,
},
},
`gatsby-plugin-sass`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `verizon.github.io`,
short_name: `verizon.github.io`,
background_color: `#FFF`,
theme_color: `#612578`,
display: `minimal-ui`,
icon: `src/images/favicon-180x180.png`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-gatsby-cloud`
],
}