-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgatsby-config.js
43 lines (42 loc) · 1.15 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
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/reference/config-files/gatsby-config/
*/
/**
* @type {import('gatsby').GatsbyConfig}
*/
module.exports = {
siteMetadata: {
title: `FPA Vault`,
description: `The FPA Vault provides open access to anyone who would like to adapt standards put forth by the FPA.`,
author: `@fairfieldprogramming`,
siteUrl: `https://vault.fairfieldprogramming.org`,
},
plugins: [
'gatsby-plugin-postcss',
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
`gatsby-plugin-sitemap`,
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: false,
sitemap: 'https://vault.fairfieldprogramming.org/sitemap/sitemap-index.xml',
policy: [{ userAgent: '*', allow: '/' }]
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `FPA Vault`,
short_name: `vault`,
start_url: `/`,
background_color: `#0F006C`,
theme_color: `#0F006C`,
display: `minimal-ui`,
icon: `src/res/favicon.png`, // This path is relative to the root of the site.
},
},
],
}