Skip to content

Commit

Permalink
docs: Fix missing commas in plugin-image defaults (#31961)
Browse files Browse the repository at this point in the history
Co-authored-by: gatsbybot <mathews.kyle+gatsbybot@gmail.com>
  • Loading branch information
nikolaik and gatsbybot committed Jun 17, 2021
1 parent aa3bad2 commit c520894
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions docs/docs/how-to/images-and-media/using-gatsby-plugin-image.md
Expand Up @@ -212,18 +212,18 @@ module.exports = {
options: {
defaults: {
formats: [`auto`, `webp`],
placeholder: `dominantColor`
quality: 50
breakpoints: [750, 1080, 1366, 1920]
backgroundColor: `transparent`
tracedSVGOptions: {}
blurredOptions: {}
jpgOptions: {}
pngOptions: {}
webpOptions: {}
avifOptions: {}
}
}
placeholder: `dominantColor`,
quality: 50,
breakpoints: [750, 1080, 1366, 1920],
backgroundColor: `transparent`,
tracedSVGOptions: {},
blurredOptions: {},
jpgOptions: {},
pngOptions: {},
webpOptions: {},
avifOptions: {},
},
},
},
`gatsby-transformer-sharp`,
`gatsby-plugin-image`,
Expand Down

0 comments on commit c520894

Please sign in to comment.