If I have a worker like the official example ```typescript export default { async fetch(request:

If I have a worker like the official example

export default {
  async fetch(request: Request): Promise<Response> {
    /**
     * Replace `remote` with the host you wish to send requests to
     */
    const remote = "https://example.com";

    return await fetch(remote, request);
  },
};


And the response is about 100MB which takes a user 1 minute to download. How much money may I be charged for each request according to the pricing model?
Was this page helpful?