wait did i see correctly that we now have images bindings but it dosent support upload? so i still n
wait did i see correctly that we now have images bindings but it dosent support upload? so i still need the api and a formData fetch? :(
Wrangler did not find routes when building functions.

"IMAGES_TRANSFORM_ERROR 9432: Bad request: 10 \"transforms\" maximum"). In the docs there is this note for error 9432: The Images Binding is not available using legacy billing. Your account is using the legacy Image Resizing subscription. To bind Images to your Worker, you will need to update your plan to the Images subscription in the dashboard.

wrangler pages secret put <key> <value> --environment preview?--env --help screen



addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request, event))
})
async function handleRequest(request, env) {
if (request.method !== 'POST') {
return new Response("Method Not Allowed", { status: 405 });
}
try {
... The Images Binding is not available using legacy billing. Your account is using the legacy Image Resizing subscription. To bind Images to your Worker, you will need to update your plan to the Images subscription in the dashboard.