learnhouse/apps/web/pages/_document.js

16 lines
No EOL
351 B
JavaScript

import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang="en">
<Head>
{/* Load runtime configuration before any app code */}
<script src="/runtime-config.js" />
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}