anycoder-eea07d51 / pages /_document.js
mohammadSaber26's picture
Upload pages/_document.js with huggingface_hub
eb7f9f9 verified
raw
history blame contribute delete
244 Bytes
import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html dir="rtl" lang="fa">
<Head />
<body>
<Main />
<NextScript />
</body>
>
</Html>
);
}