-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
gatsby-config.js
58 lines (57 loc) · 1.72 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
52
53
54
55
56
57
58
/**
* 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: `Fairfield Programming Association`,
description: `Our mission is to educate high-school and college-aged (ages 14-22) individuals about computer science, engineering, and programming. To do this, we create educational resources, scholastic aptitude exams, programming competitions, and other events.`,
author: `@fairfieldprogramming`,
siteUrl: `https://about.fairfieldprogramming.org`,
},
plugins: [
'gatsby-plugin-postcss',
`gatsby-plugin-sharp`,
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sitemap`,
{
resolve: 'gatsby-plugin-robots-txt',
options: {
host: false,
sitemap: 'https://about.fairfieldprogramming.org/sitemap/sitemap-index.xml',
policy: [{ userAgent: '*', allow: '/' }]
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Fairfield Programming Association`,
short_name: `fpa`,
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.
},
},
{
resolve: `gatsby-plugin-breadcrumb`,
options: {
// defaultCrumb: optional To create a default crumb
// see Click Tracking default crumb example below
defaultCrumb: {
location: {
pathname: "/",
},
crumbLabel: "Home",
crumbSeparator: " /",
},
}
},
],
}