-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
73 lines (73 loc) · 1.76 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
module.exports = {
siteMetadata: {
title: 'Sunny Singh',
description: 'Creating Content & Code',
siteUrl: `https://sunnysingh.io`,
},
pathPrefix: '/',
plugins: [
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: 'gatsby-plugin-fathom',
options: {
trackingUrl: 'penguin.sunny.app',
siteId: 'MFPYFNDH',
whitelistHostnames: ['sunnysingh.io', 'www.sunnysingh.io'],
embedVersion: 'v2',
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'sunnysingh.io',
short_name: 'sunny',
start_url: '/',
background_color: '#ffffff',
theme_color: '#1c1c22',
display: 'minimal-ui',
icon: './src/assets/logo-square.png',
},
},
'gatsby-plugin-remove-serviceworker',
'gatsby-plugin-react-helmet',
'gatsby-plugin-styled-components',
'gatsby-plugin-twitter',
{
resolve: 'gatsby-plugin-mdx',
options: {
extensions: ['.mdx', '.md'],
defaultLayouts: {
default: require.resolve('./src/templates/BlogPostTemplate.js'),
},
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1000,
showCaptions: true,
backgroundColor: 'transparent',
},
},
{
resolve: 'gatsby-remark-copy-linked-files',
},
],
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/pages`,
name: 'pages',
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
path: `${__dirname}/src/posts`,
name: 'posts',
},
},
],
};