2022-06-04 07:26:53 +00:00
|
|
|
import React from "react";
|
2022-06-03 16:36:24 +00:00
|
|
|
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
return (
|
|
|
|
<Html>
|
|
|
|
<Head>
|
2023-07-19 14:49:15 +00:00
|
|
|
<script
|
|
|
|
src="/scripts/main.js"
|
|
|
|
defer
|
|
|
|
></script>
|
2022-06-03 16:36:24 +00:00
|
|
|
</Head>
|
2023-07-19 14:49:15 +00:00
|
|
|
<body className="w-full">
|
2022-06-03 16:36:24 +00:00
|
|
|
<Main />
|
|
|
|
<NextScript />
|
|
|
|
</body>
|
|
|
|
</Html>
|
|
|
|
);
|
|
|
|
}
|