1// Return the default proxy.json config object for the given image. 2// This uses the "defaults" image if proxy isn't explicitly defined. 3 4export function defaultProxyConfig({ IMAGES, image }) { 5 return IMAGES?.[image]?.proxy ?? IMAGES?.["defaults"]?.proxy ?? []; 6} 7 8