-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
gatsby-config.ts
52 lines (50 loc) · 1.44 KB
/
gatsby-config.ts
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
import { type GatsbyConfig } from 'gatsby';
import path from 'path';
const config: GatsbyConfig = {
siteMetadata: {
title: `drg-completionist`,
siteUrl: `https://drg-completionist.com`,
},
graphqlTypegen: true,
plugins: [
'gatsby-plugin-sitemap',
{
resolve: 'gatsby-plugin-manifest',
options: {
name: 'DRG Completionist',
short_name: 'DRGC',
description:
"A free, open-source progressive web app that assists hard-working dwarves like yourselves in keeping track of all those gizmos cluttering up your Space Rig. With this app by your side, you can see just how close you are to becoming Deep Rock Galactic's most valuable employee!",
homepage_url: 'https://drg-completionist.com/',
start_url: '/',
lang: 'en',
default_locale: 'en',
theme_color: '#b37721',
background_color: '#1a1a1a',
display: 'standalone',
orientation: 'landscape-primary',
icon: 'src/images/assignment.png',
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `data`,
path: path.join(__dirname, `data`),
},
},
{
resolve: `gatsby-plugin-sharp`,
options: {
defaults: {
placeholder: `blurred`,
},
},
},
`gatsby-plugin-image`,
`gatsby-transformer-sharp`,
`gatsby-transformer-json`,
`gatsby-plugin-offline`,
],
};
export default config;