-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
164 lines (164 loc) · 4.79 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
157
158
159
160
161
162
163
164
module.exports = {
siteMetadata: {
title: "drumm.sh",
author: "Christian Drumm",
siteUrl: "https://drumm.sh",
description: "Blog, lectures and projects by Prof. Dr. Christian Drumm.",
mastodon: "https://mastodon.social/@ceedee666",
commentsRepo: "ceedee666/drumm.sh-comments",
},
plugins: [
"gatsby-plugin-sass",
"gatsby-plugin-image",
"gatsby-plugin-sharp",
"gatsby-transformer-sharp",
"gatsby-plugin-react-helmet",
"gatsby-plugin-sitemap",
"gatsby-plugin-catch-links",
{
resolve: "gatsby-transformer-remark",
options: {
plugins: [
"gatsby-remark-autolink-headers",
"gatsby-remark-relative-images",
{
resolve: "gatsby-remark-images",
options: {
maxWidth: 800,
},
},
{
resolve: "gatsby-remark-vscode",
options: {
theme: "Dark+ (default dark)",
},
},
"gatsby-remark-copy-linked-files",
{
resolve: "gatsby-remark-external-links",
options: {
target: "_blank",
},
},
{
resolve: "gatsby-remark-embed-video",
options: {
width: 800,
related: false, //Optional: Will remove related videos from the end of an embedded YouTube video.
noIframeBorder: true, //Optional: Disable insertion of <style> border: 0
loadingStrategy: "lazy", //Optional: Enable support for lazy-load offscreen iframes. Default is disabled.
urlOverrides: [
{
id: "youtube",
embedURL: (videoId) =>
`https://www.youtube-nocookie.com/embed/${videoId}`,
},
], //Optional: Override URL of a service provider, e.g to enable youtube-nocookie support
containerClass: "embedVideo-container", //Optional: Custom CSS class for iframe container, for multiple classes separate them by space
iframeId: false, //Optional: if true, iframe's id will be set to what is provided after 'video:' (YouTube IFrame player API requires iframe id)
},
},
],
},
},
"gatsby-transformer-sharp",
{
resolve: "gatsby-source-filesystem",
options: {
name: "images",
path: "./src/images/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "blog",
path: "./content/blog/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "teaching",
path: "./content/teaching/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "student-blog",
path: "./content/student-blog/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "projects",
path: "./content/projects/",
},
},
{
resolve: "gatsby-source-filesystem",
options: {
name: "wall-of-fame",
path: "./content/wall-of-fame/",
},
},
{
resolve: `gatsby-plugin-feed`,
options: {
query: `{
site {
siteMetadata {
title
description
siteUrl
site_url: siteUrl
}
}
}`,
feeds: [
{
serialize: ({ query: { site, allMarkdownRemark } }) => {
return allMarkdownRemark.edges.map((edge) => {
return Object.assign(
{},
{},
{
title: edge.node.frontmatter.title,
description: edge.node.excerpt,
date: edge.node.frontmatter.date,
url: site.siteMetadata.siteUrl + edge.node.fields.slug,
custom_elements: [{ "content:encoded": edge.node.html }],
},
);
});
},
query: `{
allMarkdownRemark(
sort: { frontmatter: { date: DESC } }
filter: { fields: { slug: { regex: "//(blog|student-blog)/.*/" } } }
) {
edges {
node {
excerpt
html
fields {
slug
}
frontmatter {
title
date
}
}
}
}
}`,
output: "/rss.xml",
title: "drumm.sh: Recent Blogs RSS Feed",
},
],
},
},
],
};