Skip to content

Commit

Permalink
Prevent netlify from doing image processing
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasrla committed Apr 13, 2022
1 parent aa9665a commit ad08e4e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
# command = "jekyll build"
command = "npm run build-netlify"

# If skip_processing = true, all other settings are ignored
[build.processing]
# If skip_processing = true, all other settings are ignored
skip_processing = false
[build.processing.css]
bundle = true
Expand All @@ -17,7 +17,8 @@
bundle = true
minify = false
[build.processing.images]
compress = true
# `false` because Netlify seemed to be messing with img's width and height
compress = false

# Will we need this?
# [build.processing.html]
Expand Down

0 comments on commit ad08e4e

Please sign in to comment.