Some checks failed
My Gatsby Deployment pipeline / build (push) Failing after 1m23s
25 lines
657 B
JavaScript
25 lines
657 B
JavaScript
module.exports = {
|
|
siteMetadata: {
|
|
title: "Dennis Thiessen - IT Software Engineering",
|
|
author: "Dennis Thiessen",
|
|
description: "Portfolio of Dennis Thiessen - IT Software Engineer Freelancer"
|
|
},
|
|
plugins: [
|
|
'gatsby-plugin-react-helmet',
|
|
{
|
|
resolve: `gatsby-plugin-manifest`,
|
|
options: {
|
|
name: 'gatsby-starter-default',
|
|
short_name: 'Dennis Thiessen',
|
|
start_url: '/',
|
|
background_color: '#663399',
|
|
theme_color: '#663399',
|
|
display: 'minimal-ui',
|
|
icon: 'src/assets/images/website-icon-dt.png',
|
|
},
|
|
},
|
|
'gatsby-plugin-sass',
|
|
'gatsby-plugin-offline'
|
|
],
|
|
}
|