Skip to content
This repository has been archived by the owner on Apr 24, 2020. It is now read-only.

Commit

Permalink
Merge pull request #90 from spences10/dev/76/add-favicon
Browse files Browse the repository at this point in the history
Dev/76/add favicon
  • Loading branch information
spences10 authored Jan 13, 2018
2 parents 7868f00 + 1dacbde commit dd092df
Show file tree
Hide file tree
Showing 4 changed files with 2,570 additions and 4,226 deletions.
32 changes: 25 additions & 7 deletions gatsby-config.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
module.exports = {
siteMetadata: {
title: `Scott Spence - blog`,
author: `Scott Spence`
title: 'Scott Spence - blog',
author: 'Scott Spence'
},
plugins: [
`gatsby-plugin-react-helmet`,
'gatsby-plugin-react-helmet',
'gatsby-plugin-sharp',
{
resolve: `gatsby-source-filesystem`,
resolve: 'gatsby-source-filesystem',
options: {
name: `src`,
name: 'src',
path: `${__dirname}/src`
}
},
{
resolve: `gatsby-transformer-remark`,
resolve: 'gatsby-transformer-remark',
options: {
plugins: [
{
resolve: `gatsby-remark-prismjs`,
resolve: 'gatsby-remark-prismjs',
options: {
classPrefix: 'language-'
}
Expand All @@ -29,6 +29,24 @@ module.exports = {
maxWidth: 590,
linkImagesToOriginal: false
}
},
{
resolve: 'gatsby-plugin-favicon',
options: {
logo: './src/img/favicon.png',
injectHTML: true,
icons: {
android: true,
appleIcon: true,
appleStartup: true,
coast: false,
favicons: true,
firefox: true,
twitter: false,
yandex: false,
windows: false
}
}
}
]
}
Expand Down
Loading

0 comments on commit dd092df

Please sign in to comment.