Files
encoach_frontend/src/pages/_document.tsx
2023-11-26 23:00:17 +00:00

15 lines
256 B
TypeScript

/* eslint-disable @next/next/no-sync-scripts */
import {Html, Head, Main, NextScript} from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}