CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
sagemathinc

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/util/compute/images.ts
Views: 687
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