Skip to content

Commit

Permalink
fix: don't use lazyload on images.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnycrich committed Oct 10, 2023
1 parent 20ddd57 commit 6f16db3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/Image.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class Image extends Component {
// If lazyload not set to false, enable
if (this.props.lazy === undefined)
plugins.push(
responsive([800, 1000, 1400]),
lazyload(),
placeholder(`blur`)
responsive([800, 1000, 1400])
// lazyload(),
// placeholder(`blur`)
);

return (
Expand Down

0 comments on commit 6f16db3

Please sign in to comment.