-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
148 lines (146 loc) · 3.17 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
const feedQuery = `
{
allMarkdownRemark(
filter: { fields: { format: { eq: "post" } } }
sort: { order: DESC, fields: [frontmatter___date] },
) {
edges {
node {
html
fields { slug }
frontmatter {
title
date
summary
}
}
}
}
}
`
const serializeFeedItems = (isSummary = false) => ({
query: {
site: {
siteMetadata: { siteUrl },
},
allMarkdownRemark,
},
}) => {
return allMarkdownRemark.edges.map(({ node }) => {
const {
html,
frontmatter: { title, date, summary: description },
fields: { slug },
} = node
const postUrl = siteUrl + slug
return {
title,
date,
description,
url: postUrl,
guid: postUrl,
custom_elements: [
{
'content:encoded': isSummary
? `<p>${description}</p><p><a href="${postUrl}">Read More</a></p>`
: html,
},
],
}
})
}
module.exports = {
siteMetadata: {
title: `Terence Huynh`,
description: `Software Engineer and Tech Blogger from Melbourne, Australia`,
siteUrl: `https://terencehuynh.com/`,
author: `@terencehuynh`,
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-bumbag',
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'blog',
path: `${__dirname}/content/blog`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'blog',
path: `${__dirname}/content/writing`,
},
},
{
resolve: 'gatsby-source-filesystem',
options: {
name: 'assets',
path: `${__dirname}/content/assets`,
},
},
'gatsby-plugin-image',
'gatsby-plugin-sharp',
'gatsby-transformer-sharp',
{
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
'gatsby-remark-unwrap-images',
{
resolve: 'gatsby-remark-images',
options: {
maxWidth: 1024,
quality: 80,
linkImagesToOriginal: false,
},
},
{
resolve: 'gatsby-remark-custom-blocks',
options: {
blocks: {
credits: {
classes: 'credits',
},
},
},
},
],
},
},
{
resolve: 'gatsby-plugin-feed',
options: {
query: `
{
site {
siteMetadata {
title
description
siteUrl
site_url: siteUrl
}
}
}
`,
feeds: [
{
query: feedQuery,
serialize: serializeFeedItems(true),
output: '/blog/feed.xml',
title: "Terence Huynh's Blog",
match: '^/blog/',
},
{
query: feedQuery,
serialize: serializeFeedItems(false),
output: '/blog/feed-full.xml',
title: "Terence Huynh's Blog - Full Article",
match: '^/blog/',
},
],
},
},
],
}