-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
66 lines (65 loc) · 1.73 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
try {
require("dotenv").config();
} catch (e) {}
module.exports = {
siteMetadata: {
title: `Echelon101.net`,
description: `A german gamer, IT Admin and coder.`,
author: `@Timomrx`,
siteUrl: `https://echelon101.net`,
},
plugins: [
`gatsby-plugin-remove-serviceworker`,
{
resolve: `gatsby-plugin-typescript`,
options: {
isTSX: true,
allExtensions: true,
},
},
`gatsby-plugin-image`,
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-plugin-sitemap`,
options: {
output: `/sitemap.xml`,
createLinkInHead: true,
},
},
{
resolve: `gatsby-plugin-sass`,
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `content`,
path: `${__dirname}/content`,
},
},
`gatsby-transformer-remark`,
`gatsby-plugin-sharp`,
/*{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Unkn0wnCat.net`,
short_name: `Unkn0wnCat.net`,
start_url: `/`,
background_color: `#15151f`,
theme_color: `#1f1a3d`,
display: `minimal-ui`,
lang: `de`,
icon: `src/images/Unkn0wnCat.net.png`, // This path is relative to the root of the site.
cache_busting_mode: 'none'
},
},*/
],
};