mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 01:10:15 -04:00
38 lines
997 B
TypeScript
38 lines
997 B
TypeScript
import Document, { DocumentContext, Head, Html, Main, NextScript } from 'next/document'
|
|
|
|
import { BASE_PATH, IS_PLATFORM } from '@/lib/constants'
|
|
|
|
class MyDocument extends Document {
|
|
static async getInitialProps(ctx: DocumentContext) {
|
|
const initialProps = await Document.getInitialProps(ctx)
|
|
|
|
return initialProps
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head>
|
|
{/* Workaround for https://github.com/suren-atoyan/monaco-react/issues/272 */}
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
data-name="vs/editor/editor.main"
|
|
href={
|
|
IS_PLATFORM
|
|
? 'https://cdnjs.cloudflare.com/ajax/libs/monaco-editor/0.52.2/min/vs/editor/editor.main.css'
|
|
: `${BASE_PATH}/monaco-editor/editor/editor.main.css`
|
|
}
|
|
/>
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default MyDocument
|