We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug A clear and concise description of what the bug is. Repro video: https://github.com/user-attachments/assets/0dd94563-4b67-4e4d-b985-008ae1569f39
To Reproduce Steps to reproduce the behavior:
404.jsx
/doesntexist
/
Expected behavior Keep CSS
The text was updated successfully, but these errors were encountered:
it happens only for i18n websites for some reasons, because dir attribute is not set on <html> element after navigating with <NextLink> from 404 page
dir
<html>
<NextLink>
previously this script set dir on <html>, but while navigating with <NextLink> from 404 it's not reexecuted
nextra/packages/nextra-theme-docs/src/index.tsx
Lines 48 to 52 in 2fe8e71
way to fix:
<a>
dir="ltr"
_document.jsx
nextra/examples/swr-site/pages/_document.jsx
Line 13 in 2fe8e71
Sorry, something went wrong.
<Html dir="ltr"> workaround did the trick, thank you !
<Html dir="ltr">
No branches or pull requests
Describe the bug A clear and concise description of what the bug is.
Repro video:
https://github.com/user-attachments/assets/0dd94563-4b67-4e4d-b985-008ae1569f39
To Reproduce Steps to reproduce the behavior:
404.jsx
file/doesntexist
/
Expected behavior
Keep CSS
The text was updated successfully, but these errors were encountered: