Skip to content

Commit

Permalink
Change: Enable exif by default
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKoerner committed Oct 12, 2023
1 parent 15d2f8b commit 150ebce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const config: Config = {
max: Number(process.env.PNG_SIZE_MAX ?? 256),
default: Number(process.env.PNG_SIZE_DEFAULT ?? 128),
},
exif: Boolean(Number(process.env.PNG_EXIF) ?? 0),
exif: Boolean(Number(process.env.PNG_EXIF) ?? 1),
},
jpeg: {
enabled: Boolean(Number(process.env.JPEG ?? 1)),
Expand All @@ -20,7 +20,7 @@ export const config: Config = {
max: Number(process.env.JPEG_SIZE_MAX ?? 256),
default: Number(process.env.JPEG_SIZE_DEFAULT ?? 128),
},
exif: Boolean(Number(process.env.JPEG_EXIF) ?? 0),
exif: Boolean(Number(process.env.JPEG_EXIF) ?? 1),
},
json: {
enabled: Boolean(Number(process.env.JSON) ?? 1),
Expand Down

0 comments on commit 150ebce

Please sign in to comment.