-
Notifications
You must be signed in to change notification settings - Fork 2
/
gatsby-config.js
47 lines (45 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
const dotenv = require('dotenv')
dotenv.config({
path: `.env.${process.env.NODE_ENV}`,
})
module.exports = {
siteMetadata: {
title: `Dev Workspaces`,
description: `View developer workspaces: get inspirations for your own or show off what you have.`,
author: `@markconroy`,
siteUrl: `https://dev-workspaces.mark.ie`,
metaImage: `mark-conroy.jpg`,
},
plugins: [
`gatsby-plugin-react-helmet`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
options: {
name: `workspaces`,
path: `${__dirname}/src/workspaces`,
},
},
`gatsby-plugin-styled-components`,
`gatsby-transformer-sharp`,
`gatsby-plugin-image`,
`gatsby-transformer-remark`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `CHANGEME`,
short_name: `CHANGEME`,
start_url: `/`,
background_color: `#006699`,
theme_color: `#006699`,
display: `minimal-ui`,
icon: `src/images/markie-icon.jpg`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-offline`,
],
}