-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
156 lines (154 loc) · 4.34 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
module.exports = {
siteMetadata: {
title: 'Portfolio | Nikhil Namal',
description:
"Hi, I'm Nikhil Namal. I'm a full stack developer. I like dabbling in various parts of development and like to learn about new technologies, make memes or simply play games in my free time.",
siteUrl: 'https://nikhilnamal.netlify.com',
},
plugins: [
// Adding various source folders to the GraphQL layer.
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'pages',
path: `${__dirname}/src/pages/`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'data',
path: `${__dirname}/src/data/`,
},
},
{
resolve: 'gatsby-plugin-mdx',
options: {
defaultLayouts: {
default: require.resolve('./src/templates/BlogPost.jsx'),
},
gatsbyRemarkPlugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1536,
linkImagesToOriginal: false,
},
},
{ resolve: `gatsby-remark-copy-linked-files` },
{ resolve: `gatsby-remark-smartypants` },
{ resolve: `gatsby-remark-widows` },
],
plugins: [
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1536,
linkImagesToOriginal: false,
},
},
],
},
},
{
resolve: 'gatsby-plugin-feed-mdx',
options: {
query: `
{
site {
siteMetadata {
title
description
siteUrl
site_url: siteUrl
}
}
}
`,
feeds: [
{
serialize: ({ query: { site, allMdx } }) => {
return allMdx.edges.map(edge => {
return Object.assign({}, edge.node.frontmatter, {
description: edge.node.frontmatter.description,
date: edge.node.frontmatter.date,
url: site.siteMetadata.siteUrl + edge.node.fields.slug,
guid: site.siteMetadata.siteUrl + edge.node.fields.slug,
custom_elements: [{ 'content:encoded': edge.node.html }],
})
})
},
query: `
{
allMdx(
sort: { order: DESC, fields: [frontmatter___date] }
) {
edges {
node {
fields {
slug
}
frontmatter {
title
description
date
}
html
}
}
}
}
`,
output: '/rss.xml',
title: 'Nikhil Namal • nikhilnamal.netlify.com',
match: '^/blog/',
},
],
},
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'Nikhil Namal',
short_name: 'Nikhil',
start_url: '/',
background_color: '#f2930d',
theme_color: '#f9f9f8',
display: 'minimal-ui',
icons: [
{
src: '/android-chrome-192x192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/android-chrome-512x512.png',
sizes: '512x512',
type: 'image/png',
},
],
},
},
'gatsby-transformer-json',
'gatsby-transformer-sharp',
'gatsby-plugin-catch-links',
'gatsby-plugin-emotion',
'gatsby-plugin-layout',
'gatsby-plugin-preact',
'gatsby-plugin-react-helmet',
'gatsby-plugin-remove-serviceworker',
'gatsby-plugin-sharp',
'gatsby-plugin-sitemap',
'gatsby-plugin-netlify',
{
resolve: `gatsby-plugin-google-analytics`,
options: {
// The property ID; the tracking code won't be generated without it
trackingId: "UA-134080378-4",
// Defines where to place the tracking script - `true` in the head and `false` in the body
head: true,
// Setting this parameter is optional
},
},
],
}