chore: image optimization
This commit is contained in:
parent
52b079515d
commit
2b8dca5ca8
3 changed files with 4 additions and 4 deletions
|
@ -11,7 +11,7 @@ module.exports = {
|
|||
)
|
||||
: `https://cdn.coryd.dev/albums/${media.name.replace(/\s+/g, '-').toLowerCase()}.jpg`
|
||||
},
|
||||
proxy: (url, host, cdn) => {
|
||||
return url.replace(host, cdn)
|
||||
movie: (url, host, cdn) => {
|
||||
return url.replace(host, cdn).replace('600', '200').replace('900', '300')
|
||||
},
|
||||
}
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"description": "The source for my personal site, blog and portfolio. Build using 11ty and hosted on Vercel.",
|
||||
"main": "index.html",
|
||||
"scripts": {
|
||||
"start": "ELEVENTY_PRODUCTION=false eleventy --serve && NODE_ENV=development npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
||||
"start": "rm -rf .cache && ELEVENTY_PRODUCTION=false eleventy --serve && NODE_ENV=development npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
||||
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve && NODE_ENV=development npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
|
||||
"lint": "eslint .",
|
||||
"lint:fix": "eslint . --fix",
|
||||
|
|
|
@ -145,7 +145,7 @@ layout: main
|
|||
<div class="px-1 text-xs font-bold text-white">{{ movie.title }}</div>
|
||||
</div>
|
||||
<img
|
||||
src="{{movie.image | proxy: site.letterboxd-host, site.cdn-movies}}"
|
||||
src="{{movie.image | movie: site.letterboxd-host, site.cdn-movies}}"
|
||||
onerror="this.onerror=null; this.src='/assets/img/media/404-movie.jpg'"
|
||||
width="226"
|
||||
height="337"
|
||||
|
|
Reference in a new issue