-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgatsby-config.js
54 lines (54 loc) · 1.19 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
module.exports = {
siteMetadata: {
title: `QTube`,
description: `QuakeWorld CTF Demo Archive`,
author: `@dsvensson`,
siteUrl: `https://qw-ctf.github.io/qtube/`,
},
plugins: [
`gatsby-plugin-sass`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-image`,
{
resolve: `gatsby-plugin-sharp`,
options: {
defaults: {
formats: ["png"]
}
}
},
`gatsby-transformer-sharp`,
{
resolve: `gatsby-transformer-json`,
options: {
typeName: ({ node, object, isArray }) => "MatchJson"
}
},
`gatsby-plugin-fontawesome-css`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `matches`,
path: `${__dirname}/src/matches`,
ignore: [`**/*\.extra\.json`]
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `QuakeWorld CTF Demo Archive`,
short_name: `QTube`,
start_url: `/`,
display: `minimal-ui`,
icon: `src/images/favicon.png`,
},
},
],
}