-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgatsby-config.js
More file actions
78 lines (77 loc) · 2.22 KB
/
Copy pathgatsby-config.js
File metadata and controls
78 lines (77 loc) · 2.22 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/**
* Configure your Gatsby site with this file.
*
* See: https://www.gatsbyjs.com/docs/gatsby-config/
*/
module.exports = {
siteMetadata: {
title: 'Andydevs',
description: `Software engineer by trade. Hobbyist programmer with wide
experience in programming languages and frameworks. I graduated in 2020
from Drexel University with a Bachelor's in Computer Engineering.
I'm most experienced in Python and JavaScript, although I'm continuously
expanding my skillset and learning new things.`,
contact: {
email: 'akanshul97@gmail.com',
linkedin: 'https://www.linkedin.com/in/anshul-kharbanda-03433712b/',
github: 'andydevs',
itch: 'andydevs'
}
},
flags: {
DEV_SSR: false
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-scroll-reveal',
'gatsby-plugin-styled-components',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Andydevs',
short_name: 'Andydevs',
icon: 'assets/graphics/logo.svg'
}
},
{
resolve: 'gatsby-plugin-google-fonts',
options: {
fonts: ['rubik:300,300i,500,600,800'],
display: 'swap'
}
},
{
resolve: 'gatsby-plugin-react-svg',
options: {
rule: {
include: /assets/
}
}
},
'gatsby-transformer-sharp',
'gatsby-plugin-image',
{
resolve: 'gatsby-plugin-sharp',
options: {
defaults: {
placeholder: 'none',
backgroundColor: '#005580',
quality: 100
}
}
},
{
resolve: 'gatsby-source-contentful',
options: {
spaceId: 'ki8v6ao5nutn',
accessToken: process.env.CONTENTFUL_ACCESS_TOKEN
}
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/assets/`
}
}
]
}