Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemathinc
GitHub Repository: sagemathinc/cocalc
Path: blob/master/src/packages/next/lib/config.ts
1447 views
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