From 15d3c6ab2fab6835cef3be29b3c8a1abd3931d7d Mon Sep 17 00:00:00 2001 From: Conrad Date: Fri, 24 Jan 2020 09:00:31 +0100 Subject: [PATCH] Fixed config --- gatsby-config.js | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/gatsby-config.js b/gatsby-config.js index dd32ac0..3d8d9c6 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -3,22 +3,26 @@ */ module.exports = { - resolve: `gatsby-plugin-manifest`, - options: { - name: `Urban Brothers Homepage`, - short_name: `Urban Website`, - start_url: `/`, - background_color: `#6b37bf`, - theme_color: `#6b37bf`, - // Enables "Add to Homescreen" prompt and disables browser UI (including back button) - // see https://developers.google.com/web/fundamentals/web-app-manifest/#display - display: `standalone`, - icon: `src/images/icon.png`, // This path is relative to the root of the site. - }, siteMetadata: { title: `Urban Brothers Website`, siteURL: `https://urbanbrothers.de`, description: `Homepage of the Urban Brothers`, }, // pathPrefix: ``, // URL prefix of the whole site + plugins: [ + { + resolve: `gatsby-plugin-manifest`, + options: { + name: `Urban Brothers Homepage`, + short_name: `Urban Website`, + start_url: `/`, + background_color: `#6b37bf`, + theme_color: `#6b37bf`, + // Enables "Add to Homescreen" prompt and disables browser UI (including back button) + // see https://developers.google.com/web/fundamentals/web-app-manifest/#display + display: `standalone`, + icon: `src/images/icon.png`, // This path is relative to the root of the site. + }, + }, + ], }