Skip to main content
Version: 3.36.0

Region

Enumerator options for imageOptimizerOptions.region.

Constants

  • UsEast ("us_east")
  • UsCentral ("us_central")
  • UsWest ("us_west")
  • EuCentral ("eu_central")
  • EuWest ("eu_west")
  • Asia ("asia")
  • Australia ("australia")

Examples

import { Region } from 'fastly:image-optimizer';

addEventListener("fetch", (event) => event.respondWith(handleRequest(event)));

async function handleRequest(event) {
return await fetch('https://www.w3.org/Graphics/PNG/text2.png', {
imageOptimizerOptions: {
region: Region.UsEast
},
backend: 'w3'
});
}