-
Notifications
You must be signed in to change notification settings - Fork 1
/
gatsby-config.js
35 lines (35 loc) · 972 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
module.exports = {
siteMetadata: {
title: `Actionsflow`,
description: `A free IFTTT/Zapier alternative for developers to automate your workflows based on Github actions`,
siteUrl: `https://actionsflow.github.io`,
author: `@theowenyoung`,
},
plugins: [
`gatsby-plugin-react-helmet`,
`gatsby-plugin-sass`,
{
resolve: `gatsby-source-filesystem`,
options: {
name: `assets`,
path: `${__dirname}/src/assets`,
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-sharp`,
{
resolve: `gatsby-plugin-manifest`,
options: {
name: `gatsby-landing-page-starter`,
short_name: `landing`,
start_url: `/`,
background_color: `#ffffff`,
theme_color: `#675CE2`,
display: `standalone`,
icon: `src/assets/logo.svg`, // This path is relative to the root of the site.
},
},
`gatsby-plugin-offline`,
`gatsby-plugin-sitemap`,
],
}