-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
124 lines (123 loc) · 3.07 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
require('dotenv').config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `Karol Waliszewski`,
description: `Portfolio Karola Waliszewskiego zawierające informacje takie jak: poznane technologie, wykonane projekty oraz doświadczenie zawodowe.`,
author: `Karol Waliszewski`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-styled-components`,
options: {
displayName: true,
},
},
{
resolve: `gatsby-plugin-canonical-urls`,
options: {
siteUrl: `https://www.karolwaliszewski.pl/`,
stripQueryString: true,
},
},
{
resolve: `gatsby-plugin-nprogress`,
options: {
color: `#FECE47`,
showSpinner: true,
},
},
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-sharp`,
options: {
defaults: {
formats: [`auto`, `webp`],
placeholder: `blurred`,
quality: 95,
breakpoints: [500, 750, 1080, 1366, 1920],
backgroundColor: `transparent`,
},
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: `${__dirname}/src/assets`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `projects`,
path: `${__dirname}/src/projects`,
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Karol Waliszewski Portfolio`,
short_name: `Waliszewski Portfolio`,
start_url: `/`,
background_color: `#FECE47`,
theme_color: `#FECE47`,
display: `minimal-ui`,
icon: `src/assets/icons/favicon.png`, // This path is relative to the root of the site.
},
},
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: `gatsby-remark-images`,
options: {
maxWidth: 1000,
linkImagesToOriginal: false,
},
},
{
resolve: `gatsby-remark-images-medium-zoom`,
options: {
margin: 20,
background: '#222222',
scrollOffset: 80,
},
},
],
},
},
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`karla\:400,500,600,700`, `rubik\:400,500,600,700`],
display: 'swap',
},
},
`gatsby-plugin-netlify`,
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true,
jsxPragma: `jsx`,
allExtensions: true,
},
},
{
resolve: 'gatsby-plugin-eslint',
options: {
extensions: ['js', 'jsx', 'ts', 'tsx'],
exclude: ['node_modules', '.cache', 'public'],
stages: ['develop'],
},
},
`gatsby-plugin-smoothscroll`,
// this (optional) plugin enables Progressive Web App + Offline functionality
// To learn more, visit: https://gatsby.dev/offline
// `gatsby-plugin-offline`,
],
}