mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
13 lines
233 B
TypeScript
13 lines
233 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|