Image is resized only in sandbox but not using browser

For Workes & Pages, what is the name of the domain?

badgeup-images dot com

What is the issue or error you’re encountering

Image is resized only in sandbox but not using browser

What steps have you taken to resolve the issue?

  1. Prepared worker connected with route badgeup-images [dot] com/transform
  2. Worker does the transormation under sandbox
  3. Worker has dummy JS code with hardcoded images
  async fetch(request) {
    console.log('request', request);
    return fetch("https://badgeup-images [dot] com/800.png", {
      cf: {
        image: {
          width: 200,
          height: 200,
          format: "webp",
          draw: [
            {
              url: "https://badgeup-images.com/docker [dot] png",
              top: 5,
              left: 5,
              fit: "contain",
              width: 100,
              height: 100
            }
          ]
        }
      }
    });
  },
};

What are the steps to reproduce the issue?

  1. Open url in browser https://badgeup-images [dot] com/transform

Actual result: image is not resized and not transformed
Expected result: image is resized and has image overlay

I am afraid this might be related to the recent incident and we’d have to be patient and wait for a fix:

This topic was automatically closed after 15 days. New replies are no longer allowed.