forked from hackthevalley/htv-landing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gatsby-config.js
45 lines (45 loc) · 1.22 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
module.exports = {
siteMetadata: {
title: `Hack The Valley 4`,
description: `36 hour Hackathon at The University of Toronto Scarborough. Get your hands on some of the top hardware and API's out there and put your creativity to the test!`,
author: `hackthevalley`,
},
plugins: [
// `gatsby-plugin-offline`,
`gatsby-plugin-styled-components`,
`gatsby-plugin-react-helmet`,
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
{
resolve: `gatsby-plugin-alias-imports`,
options: {
alias: {
'@components': './src/components',
'@images': './src/images',
'@layouts': './src/layouts',
'@sections': './src/sections',
'@utils': './src/utils'
},
},
},
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `Hack The Valley 4 Landing Page`,
short_name: `htv4-landing`,
start_url: `/`,
background_color: `#663399`,
theme_color: `#663399`,
display: `minimal-ui`,
icon: `src/images/icon.png`,
},
},
],
}