20 lines
472 B
JavaScript
20 lines
472 B
JavaScript
import React from "react";
|
|
import { Html, Head, Main, NextScript } from "next/document";
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head>
|
|
<script
|
|
src="/scripts/main.js"
|
|
defer
|
|
></script>
|
|
</Head>
|
|
<body className="w-full">
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
);
|
|
}
|