-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
42 lines (41 loc) · 1.08 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
module.exports = {
siteMetadata: {
hireLink: 'https://astrocoders.com/#hireUs',
bugLink: 'https://github.com/Astrocoders/universe-landing/issues',
githubLink: 'https://github.com/Astrocoders/universe-landing',
weAreHiringLink: 'https://astrocoders.com/join-us'
},
plugins: [
`gatsby-plugin-typescript`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: `${__dirname}/data`
}
},
{
resolve: 'gatsby-plugin-manifest',
options: {
name: "Universe",
short_name: "Universe",
background_color: "#e5e5e5",
theme_color: "#8773e3",
description: "Find ReasonML bulletproof bindings",
display: "minimal-ui",
icon: "src/images/astro-logo-micro.png"
}
},
'gatsby-plugin-offline',
{
resolve: `gatsby-plugin-google-fonts`,
options: {
fonts: [`Roboto\: 300,400,700`],
},
},
],
}