17 lines
296 B
TypeScript
17 lines
296 B
TypeScript
/* eslint-disable @next/next/no-sync-scripts */
|
|
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
const Document = () => (
|
|
<Html>
|
|
<Head>
|
|
<script src="/__env.js" />
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
|
|
export default Document
|