From 2b8c57b39eb2fe4b03476adf326f07425ac0f063 Mon Sep 17 00:00:00 2001 From: Daniel Gonzalez Date: Thu, 19 Nov 2020 23:43:19 -0400 Subject: [PATCH] fix(build): Fix wallet.fullstack.cash build issue --- gatsby-config.js | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/gatsby-config.js b/gatsby-config.js index 8eba123..f21d51c 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -22,7 +22,14 @@ const normalConfig = [ background_color: '#663399', theme_color: '#663399', display: 'minimal-ui', - icon: 'src/images/gatsby-icon.png' // This path is relative to the root of the site. + // icon: 'src/images/gatsby-icon.png' // This path is relative to the root of the site. + icons: [ + { + src: 'src/images/gatsby-icon.png', + sizes: '192x192', + type: 'image/png' + } + ] // Add or remove icon sizes as desired } } @@ -54,7 +61,14 @@ const ipfsConfig = [ background_color: '#663399', theme_color: '#663399', display: 'minimal-ui', - icon: 'src/images/gatsby-icon.png' // This path is relative to the root of the site. + // icon: 'src/images/gatsby-icon.png' // This path is relative to the root of the site. + icons: [ + { + src: 'src/images/gatsby-icon.png', + sizes: '192x192', + type: 'image/png' + } + ] // Add or remove icon sizes as desired } }