forked from Swizec/serverlesshandbook.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
32 lines (32 loc) · 980 Bytes
/
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
module.exports = {
siteMetadata: {
title: `Serverless Handbook for Frontend Engineers`,
description: `Dive into modern backend. Understand any backend.`,
author: `@swizec`,
siteUrl: `https://serverlesshandbook.dev/`,
courseFirstLesson: `/getting-started`,
convertkit: {
defaultFormId: "2103715",
claimFormId: "2175932",
},
hasAuthentication: true,
},
plugins: [
"@swizec/gatsby-theme-course-platform",
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Serverless Handbook for Frontend Engineers",
short_name: "Serverless Handbook for Frontend Engineers",
description:
"Learn everything you need to dive into modern backend. Understand any backend.",
start_url: "/",
background_color: "#fff",
theme_color: "#FF002B",
display: "standalone",
icon: "./static/icon.png",
},
},
"gatsby-plugin-remove-serviceworker",
],
}