mirror of https://gitlab.com/curben/blog
13 lines
413 B
JavaScript
13 lines
413 B
JavaScript
export async function onRequestGet (context) {
|
|
const { pathname } = new URL(context.request.url)
|
|
const imageURL = new URL(pathname, 'https://mdleom.com')
|
|
const imageRequest = new Request(imageURL, {
|
|
headers: context.request.headers
|
|
})
|
|
// return fetch(imageRequest)
|
|
|
|
// CF_IMAGES binds to cf-images worker
|
|
// configured in the pages dashboard
|
|
return context.env.CF_IMAGES.fetch(imageRequest)
|
|
}
|