-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
42 lines (42 loc) · 1020 Bytes
/
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: {
siteUrl: "https://flacial.github.io/c0d3-submissions-interface",
title: "c0d3-submissions-interface",
},
pathPrefix: "/c0d3-submissions-interface",
plugins: [
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sitemap`,
`gatsby-plugin-mdx`,
{
resolve: "gatsby-source-filesystem",
options: {
name: "pages",
path: "./src/pages/",
},
__key: "pages",
},
{
resolve: "gatsby-plugin-react-svg",
options: {
rule: {
include: /images/,
},
},
__key: "pages",
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `c0d3-submissions-interface`,
short_name: `c0d3-submissions`,
icon: "src/images/favicon-32x32.png",
background_color: "#fff",
theme_color: "#fff",
display: "standalone",
icon: "src/images/favicons/favicon-32x32.png",
},
},
],
};