Add _document.js

This commit is contained in:
Ben Ramey
2022-08-27 16:02:34 -05:00
parent c45d304fdd
commit f46da9a619

13
web/pages/_document.js Normal file
View File

@@ -0,0 +1,13 @@
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html dir="ltr">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}