-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
48 lines (47 loc) · 1.14 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
require('dotenv/config');
module.exports = {
trailingSlash: 'always',
siteMetadata: {
title: 'Leela the Beagle',
author: 'ayan4m1',
description: 'Memorial for my beagle.',
siteUrl: 'https://leelathebeagle.com/'
},
plugins: [
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/images`
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Leela the Beagle',
/* eslint-disable camelcase */
short_name: 'Leela the Beagle',
start_url: '/',
background_color: '#995c30',
theme_color: '#995c30',
/* eslint-enable camelcase */
display: 'minimal-ui',
icon: 'src/images/gatsby-icon.png'
}
},
{
resolve: 'gatsby-plugin-eslint',
options: {
configType: 'flat',
eslintPath: 'eslint/use-at-your-own-risk'
}
},
'gatsby-plugin-image',
'gatsby-plugin-sass',
'gatsby-plugin-sharp',
'gatsby-plugin-sharp-exif',
'gatsby-plugin-react-helmet',
'gatsby-transformer-sharp',
'@ayan4m1/gatsby-plugin-root-import'
]
};