-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgatsby-config.js
56 lines (55 loc) · 1.36 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
const path = require('path')
module.exports = {
pathPrefix: "/htf2.hackthefog.com",
siteMetadata: {
title: 'Hack the Fog 2.0',
},
plugins: [
'gatsby-plugin-react-helmet',
'gatsby-plugin-styled-components',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Hack the Fog 2.0',
short_name: 'hackthefog',
start_url: '/',
background_color: '#fff',
theme_color: '#207AEE',
display: 'minimal-ui',
},
},
'gatsby-plugin-offline',
{
resolve: 'gatsby-plugin-root-import',
options: {
src: path.join(__dirname, 'src'),
components: path.join(__dirname, 'src/components'),
home: path.join(__dirname, 'src/components/home'),
pages: path.join(__dirname, 'src/pages'),
theme: path.join(__dirname, 'src/theme'),
data: path.join(__dirname, 'src/data'),
images: path.join(__dirname, 'src/img'),
},
},
{
resolve: `gatsby-source-filesystem`,
options: {
name: `img`,
path: path.join(__dirname, `src/img`)
}
},
`gatsby-plugin-sharp`,
`gatsby-transformer-sharp`,
{
resolve: `gatsby-plugin-prefetch-google-fonts`,
options: {
fonts: [
{
family: `Jomolhari`,
variants: [`400`]
},
],
},
},
],
}