Skip to content

Commit

Permalink
feat: add gatsby-image to starter (#107)
Browse files Browse the repository at this point in the history
* install and config 'gatsby-image' plugins
* add image to index
* doc: add more detail to comment

closes gatsbyjs/gatsby#9158
  • Loading branch information
lexishanson authored and jlengstorf committed Oct 24, 2018
1 parent cbaae4b commit eb4b328
Show file tree
Hide file tree
Showing 6 changed files with 3,097 additions and 103 deletions.
9 changes: 9 additions & 0 deletions gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ module.exports = {
},
plugins: [
'gatsby-plugin-react-helmet',
{
resolve: `gatsby-source-filesystem`,
options: {
name: `images`,
path: `${__dirname}/src/images`,
},
},
'gatsby-transformer-sharp',
'gatsby-plugin-sharp',
{
resolve: `gatsby-plugin-manifest`,
options: {
Expand Down
Loading

0 comments on commit eb4b328

Please sign in to comment.