Skip to content
/ hugo Public
forked from gohugoio/hugo

Commit

Permalink
Add .jpe and .jfif to image/jpeg extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmooring committed Dec 12, 2021
1 parent 657d027 commit d955a10
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/images/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,10 @@ import (

var (
imageFormats = map[string]Format{
".jpg": JPEG,
".jfif": JPEG,
".jpe": JPEG,
".jpeg": JPEG,
".jpg": JPEG,
".png": PNG,
".tif": TIFF,
".tiff": TIFF,
Expand Down

0 comments on commit d955a10

Please sign in to comment.