-
Notifications
You must be signed in to change notification settings - Fork 6
/
gatsby-config.js
33 lines (33 loc) · 1011 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
29
30
31
32
33
module.exports = {
siteMetadata: {
title: `tjCSL Sysadmins`,
description: `Official website of Thomas Jefferson High School for Science and Technology's systems administrator team.`,
author: `tjCSL`,
siteUrl: `https://sysadmins.tjhsst.edu`
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `tjCSL Sysadmins`,
short_name: `Sysadmins`,
start_url: `/`,
background_color: `#f2f7ff`,
theme_color: `#0048AB`,
display: `minimal-ui`,
icon: `src/images/favicon.png`
}
},
`gatsby-plugin-postcss`,
`gatsby-plugin-offline`,
{
resolve: `gatsby-source-filesystem`,
options: {
path: `./src/data`
}
},
'gatsby-plugin-sitemap',
'gatsby-plugin-robots-txt'
]
};