-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
48 lines (48 loc) · 1.18 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
module.exports = {
pathPrefix: '/',
siteMetadata: {
title: `Paulina Sędłak-Jakubowska`,
description: `Personal page of Paulina Sędłak-Jakubowska, frontend developer`,
author: `Paulina Sędłak-Jakubowska`,
siteUrl: `https://paulina.s-j.me`,
},
plugins: [
'gatsby-plugin-sass',
'gatsby-plugin-image',
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
'gatsby-plugin-react-helmet',
'gatsby-plugin-sitemap',
'gatsby-plugin-cname',
{
resolve: 'gatsby-plugin-manifest',
options: {
short_name: 'P. Sędłak-Jakubowska',
name: 'Paulina Sędłak-Jakubowska',
icon: 'src/images/icon.svg',
background_color: `#1c544D`,
theme_color: `#1c544D`,
},
},
'gatsby-plugin-mdx',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'images',
path: './src/images/',
},
__key: 'images',
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: './src/pages/',
},
__key: 'pages',
},
`gatsby-plugin-fontawesome-css`,
],
};