1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-01-03 18:35:00 +01:00

package updates

This commit is contained in:
Matthias Kretschmann 2018-08-07 00:28:21 +02:00
parent bbaae4c175
commit 542436f38b
Signed by: m
GPG Key ID: 606EEEF3C479A91F
3 changed files with 10 additions and 33 deletions

View File

@ -60,36 +60,15 @@ module.exports = {
}
},
{
resolve: 'gatsby-plugin-favicon',
resolve: 'gatsby-plugin-manifest',
options: {
logo: './src/images/favicon.png',
injectHTML: true,
// WebApp Manifest Configuration
appName: title.toLowerCase(),
appDescription: `${title.toLowerCase()} { ${tagline.toLowerCase()} }`,
developerName: title,
developerURL: url,
dir: 'auto',
lang: 'en-US',
background: '#e7eef4',
name: title.toLowerCase(),
short_name: 'mk',
start_url: '/',
background_color: '#e7eef4',
theme_color: '#88bec8',
display: 'standalone',
orientation: 'any',
start_url: '/?homescreen=1',
version: '1.0',
icons: {
android: true,
appleIcon: true,
appleStartup: false,
coast: false,
favicons: true,
firefox: true,
twitter: false,
yandex: true,
windows: true
}
display: 'minimal-ui',
icon: 'src/images/favicon.png'
}
},
'gatsby-plugin-react-helmet',

View File

@ -21,9 +21,9 @@
},
"dependencies": {
"file-saver": "^1.3.8",
"gatsby": "^2.0.0-beta.71",
"gatsby": "^2.0.0-beta.72",
"gatsby-image": "^2.0.0-beta.7",
"gatsby-plugin-favicon": "^3.1.2",
"gatsby-plugin-manifest": "^2.0.2-beta.3",
"gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-offline": "^2.0.0-beta.6",
"gatsby-plugin-react-helmet": "^3.0.0-beta.4",

View File

@ -60,9 +60,7 @@ const Layout = ({ children, location }) => {
<Head meta={meta} />
<Header meta={meta} isHomepage={isHomepage} />
<main className={styles.screen} location={location}>
{children}
</main>
<main className={styles.screen}>{children}</main>
<Footer meta={meta} />
</Fragment>