Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/compute/images.ts
1447 views
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
4
export function defaultProxyConfig({ IMAGES, image }) {
5
return IMAGES?.[image]?.proxy ?? IMAGES?.["defaults"]?.proxy ?? [];
6
}
7
8