export default {
async fetch(request, env, ctx) {
const url = new URL(request.url)
const imageUrl = url.searchParams.get("image");
return fetch(imageUrl, {
cf: {
image: {
blur: 100,
},
},
});
},
};
export default {
async fetch(request, env, ctx) {
const url = new URL(request.url)
const imageUrl = url.searchParams.get("image");
return fetch(imageUrl, {
cf: {
image: {
blur: 100,
},
},
});
},
};