-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
57 lines (57 loc) · 1.31 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
module.exports = {
siteMetadata: {
title: "Hostile.Design",
siteUrl: "https://hostile.design",
description: "Custom Software Design & Development",
author: "Unfrl",
publisher: "Unfrl",
icon: "src/assets/favicon.ico",
keywords: [
"software",
"development",
"custom",
"custom apps",
"engineering",
"progressive web app",
"PWA"
]
},
plugins: [
{
resolve: "gatsby-plugin-react-leaflet",
options: {
linkStyles: true // (default: true) Enable/disable loading stylesheets via CDN
}
},
"gatsby-plugin-typescript",
{
resolve: "gatsby-plugin-material-ui",
// If you want to use styled components you should change the injection order.
options: {
stylesProvider: {
injectFirst: true
}
}
},
"gatsby-plugin-react-helmet",
{
resolve: "gatsby-plugin-sitemap",
options: {
createLinkInHead: true
}
},
{
resolve: "gatsby-plugin-manifest",
options: {
name: "Hostile.Design",
short_name: "Hostile.Design",
start_url: "/",
background_color: "#303030",
theme_color: "#212121",
display: "standalone",
icon: "src/assets/logo.png"
}
},
"gatsby-plugin-offline"
]
};