import { Html, Head, Main, NextScript } from 'next/document';
export default function Document() {
return (
<Html lang='en'>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
//So to add this tag, we need to use the next.config.js file
module.exports = {
i18n: {
locales: ['en'],
defaultLocale: 'en',
},
};