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/next/lib/config.ts
Views: 687
1
/*
2
Constants and other configuration that impact the overall
3
look of all of the pages.
4
*/
5
6
export const MAX_WIDTH = "1000px";
7
8
export const SHARE_MAX_WIDTH = "1100px";
9
10
export const MAX_WIDTH_LANDING = "1200px";
11
12
// Return this in getServerSideProps to trigger displaying the 404 page.
13
export const NOT_FOUND = { notFound: true } as const;
14
15