-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
74 lines (73 loc) · 1.88 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
const siteMetadata = {
name: "Michal Svatos",
titleDesc: "Self-taught frontend developer/designer, privacy advocate and aspiring digital minimalist",
description: "Self-taught frontend developer with more than 10 years of experience. Strong flair for design and UX, privacy and digital minimalism enthusiast.",
email: "[email protected]",
github: "https://github.com/MichalSvatos",
linkedIn: "https://www.linkedin.com/in/michalsvatos",
behance: "https://www.behance.net/michalsvatos"
}
module.exports = {
plugins: [
`gatsby-plugin-sass`,
`gatsby-transformer-remark`,
{
resolve: `gatsby-plugin-sharp`,
options: {
defaults: {
// formats: [`auto`, `webp`],
placeholder: `dominantColor`,
quality: 95,
// breakpoints: [750, 1080, 1366, 1920],
// backgroundColor: `transparent`,
// tracedSVGOptions: {},
// blurredOptions: {},
// jpgOptions: {},
// pngOptions: {},
// webpOptions: {},
// avifOptions: {},
},
},
},
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/src/projects/`,
},
},
{
resolve: `gatsby-plugin-react-svg`,
options: {
rule: {
include: /\.inline\.svg$/
}
}
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Svatos.dev | Michal Svatos frontend developer, designer`,
short_name: `Svatos.dev`,
start_url: `/`,
background_color: `#000000`,
theme_color: `#000000`,
display: `standalone`,
icon: `src/images/favicon/favicon.png`,
},
},
],
siteMetadata: {
name: siteMetadata.name,
title: siteMetadata.name + " | " + siteMetadata.titleDesc,
description: siteMetadata.description,
contact: {
email: siteMetadata.email,
github: siteMetadata.github,
linkedIn: siteMetadata.linkedIn,
behance: siteMetadata.behance
}
},
}