-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
45 lines (45 loc) · 1.08 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
module.exports = {
siteMetadata: {
title: 'Larkin Smith',
siteUrl: 'https://www.larkindsmith.com',
author: 'Larkin Smith',
description: 'Larkin Smith is a software engineer in Brooklyn, NY.'
},
plugins: [
'gatsby-plugin-sharp',
'gatsby-plugin-mdx',
'gatsby-transformer-sharp',
`gatsby-transformer-remark`,
'gatsby-plugin-image',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/images/',
},
__key: 'images',
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: './src/pages/',
},
__key: 'pages',
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Larkin D Smith`,
short_name: `LDS`,
start_url: `/`,
background_color: `#00022e`,
theme_color: `#fcfaf6`,
display: `standalone`,
icon: `src/images/favicon.png`, // This path is relative to the root of the site.
}
},
`gatsby-transformer-json`,
"gatsby-plugin-sitemap",
],
};