Skip to content

Commit

Permalink
update webp settings to lossless 90% maybe make this more configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
tykling committed Nov 20, 2024
1 parent 3e06c1e commit ac9048b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/bma/environment_settings.py.dist
Original file line number Diff line number Diff line change
Expand Up @@ -121,9 +121,10 @@ HITCOUNT_EXCLUDE_USER_GROUP = ()
# Any Hit older than the time specified will be removed from the Hits table when the cleanup management command is run
HITCOUNT_KEEP_HIT_IN_DATABASE = { 'days': 365 }

# these settings are passed to clients running jobs
IMAGE_ENCODING = {
"image/webp": {
"lossless": True,
"quality": 1.0,
"lossless": False,
"quality": 90,
},
}

0 comments on commit ac9048b

Please sign in to comment.