-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathgatsby-config.js
52 lines (52 loc) · 1.3 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
module.exports = {
siteMetadata: {
title: `BxJS`,
description: `BxJS - or "Building X with JS" - is a web video series, live podcast as well as a community of like-minded people. The main goal of BxJS is to teach everyone to build awesome things with javascript.`,
author: `@yamalight`,
siteUrl: `https://bxjs.dev`,
},
plugins: [
`gatsby-plugin-workerize-loader`,
`gatsby-source-bxjs`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-bxjs-website`,
short_name: `bjxs`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#4dc0b5`,
display: `minimal-ui`,
icon: `src/images/bxjs-logo.png`,
},
},
`gatsby-plugin-postcss`,
{
resolve: `gatsby-plugin-purgecss`,
options: {
tailwind: true,
purgeOnly: [`src/css/style.css`],
},
},
{
resolve: `gatsby-plugin-feed`,
options: {
query: `
{
site {
siteMetadata {
title
description
siteUrl
site_url: siteUrl
}
}
}
`,
feeds: [require('./rss-feed')],
},
},
`gatsby-plugin-offline`,
],
};