-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
57 lines (57 loc) · 1.23 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
module.exports = {
siteMetadata: {
title: "Kyle Skudlarek",
author: {
name: 'Kyle Skudlarek',
},
siteUrl: 'https://www.kyleskudlarek.com',
description:
'Software engineer and designer. This is my personal website.',
},
plugins: [
"gatsby-plugin-image",
"gatsby-transformer-sharp",
"gatsby-plugin-sharp",
"gatsby-plugin-styled-components",
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [
`IBM Plex Mono\:400,600`,
`Inter\:400,500,700`,
`Merriweather\:400,700`
],
display: 'swap'
}
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `blog`,
path: `${__dirname}/blog/`,
},
},
{
resolve: `gatsby-plugin-mdx`,
options: {
extensions: [".mdx", ".md"],
gatsbyRemarkPlugins: [
{
resolve: `gatsby-remark-prismjs`,
options: {
classPrefix: "language-",
inlineCodeMarker: null,
aliases: {},
},
},
],
},
},
{
resolve: `gatsby-plugin-s3`,
options: {
bucketName: "kyleskudlarek.com",
},
},
],
};