-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
35 lines (35 loc) · 895 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
34
35
module.exports = {
siteMetadata: {
title: "Gatsby From Scratch",
description: "A minimal Gatsby project built without the CLI",
author: "@yourhandle",
},
plugins: [
`gatsby-plugin-postcss`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Tim Upchurch`,
short_name: `timup`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#000000`,
display: `standalone`,
icon: `static/favicon-32x32.png`, // Path to your favicon
},
},
`gatsby-plugin-react-helmet`,
`gatsby-plugin-react-helmet-async`,
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
'gatsby-transformer-yaml',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'projects',
path: `${__dirname}/src/data/`,
},
},
],
};