-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
54 lines (54 loc) · 1.46 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
49
50
51
52
53
54
module.exports = {
pathPrefix: '/curriculum',
siteMetadata: {
siteUrl: 'https://andresfelipe.netlify.app/',
title: 'Andrés Felipe Alvarez',
description: 'Curriculum vitae and portfolio of Andrés Alvarez.',
url: 'https: / /andresfelipe.netlify.app',
author: '@Afar_CMYK',
twitterUserName: '@Afar_CMYK',
keywords:
'gatsby, react, javascript, gatsby-background-image, curriculum, netlify',
image: 'src/images/twitter.jpg'
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-offline`,
`gatsby-plugin-netlify`,
'gatsby-plugin-image',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: `${__dirname}/src/images`
},
__key: 'images'
},
'gatsby-plugin-sitemap',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Andrés Felipe Alvarez`,
short_name: `Curriculum Andrés Alvarez`,
description: `Curriculum vitae and portfolio of Andrés Alvarez.`,
start_url: `/`,
background_color: `#0d0d0d`,
theme_color: `#0d0d0d`,
display: `standalone`,
cache_busting_mode: 'none',
icon: 'src/static/images/logo_pwa.svg',
icon_options: {
purpose: `any`
}
}
},
{
resolve: `gatsby-plugin-offline`,
options: {
precachePages: [`/index/*`, `/404/*`]
}
}
]
}