use new cdn for images
default to using one in the env
This commit is contained in:
parent
b86f748700
commit
996a5c40b1
2 changed files with 6 additions and 1 deletions
|
@ -14,6 +14,7 @@ WELCOME_VERSION=1.0
|
|||
# Custom Site info
|
||||
DOMAIN=lbry.tv
|
||||
URL=https://lbry.tv
|
||||
THUMBNAIL_CDN_URL=https://image-optimizer.vanwanet.com/?address=
|
||||
|
||||
# UI
|
||||
SITE_TITLE=lbry.tv
|
||||
|
|
|
@ -42,8 +42,12 @@ function FileThumbnail(props: Props) {
|
|||
// @if TARGET='web'
|
||||
// Pass image urls through a compression proxy
|
||||
if (thumbnail && THUMBNAIL_CDN_URL && !thumbnail.includes('https://spee.ch')) {
|
||||
url = `${THUMBNAIL_CDN_URL}${thumbnail}`;
|
||||
url = `${THUMBNAIL_CDN_URL}${thumbnail}&quality=75&height=288&width=512`;
|
||||
}
|
||||
|
||||
// else if (thumbnail && thumbnail.includes('https://spee.ch')) {
|
||||
// url = `${url}?height=512&width=288`;
|
||||
// }
|
||||
// @endif
|
||||
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue