-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (41 loc) · 1.24 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
// See: https://www.gatsbyjs.org/docs/gatsby-config/
module.exports = {
siteMetadata: {
title: `Chaotic Design`,
description: `Personal website for professional software engineer Kris Evans.`,
author: `Kris Evans <[email protected]>`
},
plugins: [
// For dyanamically loading files from the filesystem
{
resolve: `gatsby-source-filesystem`,
options: {
name: `src`,
path: `${__dirname}/src`,
}
},
// For parsing markdown files
`gatsby-transformer-remark`,
// For adding progressive web app manifest
// https://developers.google.com/web/fundamentals/web-app-manifest
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `ChaoticDesign.io`,
short_name: `ChaoticDesign`,
start_url: `/`,
background_color: `#6b37bf`,
theme_color: `#6b37bf`,
display: `standalone`,
icon: `src/images/icon.png`,
}
},
// For offline experience
`gatsby-plugin-offline`,
// For generating page metadata for search engines
`gatsby-plugin-react-helmet`,
// Fixes issue where page not showing on mobile.
// Issue: https://github.com/gatsbyjs/gatsby/issues/13410
`gatsby-plugin-remove-serviceworker`
],
}