mirror of
https://github.com/supabase/supabase.git
synced 2026-07-05 21:14:30 +08:00
18 lines
394 B
TypeScript
18 lines
394 B
TypeScript
import Document, { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
export default class MyDocument extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="en" className="dark">
|
|
<Head>
|
|
<script async src="https://platform.twitter.com/widgets.js" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|