2023-12-25 17:21:39 +08:00
|
|
|
import { Head, Html, Main, NextScript } from "next/document";
|
|
|
|
|
|
|
|
|
|
export default function Document() {
|
|
|
|
|
return (
|
2024-08-12 11:55:21 +08:00
|
|
|
// If you are using a language based on RTL typesetting direction such as Arabic,
|
|
|
|
|
// please change the dir prop value in the following code to rtl
|
|
|
|
|
// Like <Html dir="rtl" lang="en">
|
|
|
|
|
// Otherwise, please do not change
|
|
|
|
|
<Html dir="ltr" lang="en">
|
2023-12-25 17:21:39 +08:00
|
|
|
<Head />
|
|
|
|
|
<body>
|
|
|
|
|
<Main />
|
|
|
|
|
<NextScript />
|
|
|
|
|
</body>
|
|
|
|
|
</Html>
|
|
|
|
|
);
|
|
|
|
|
}
|