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
同じページ内のサンプルコードでも、セミコロンの有無が揺れている。
セミコロンありか無しかで統一をお願いしたい。 本家ではセミコロンがないようなので、本家に合わせる形が良いかと思います。
https://nextjs-ja-translation-docs.vercel.app/docs/advanced-features/custom-error-page#404-%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%AE%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%9E%E3%82%A4%E3%82%BA
- export default function Custom404() { - return <h1>404 - Page Not Found</h1> - } + // pages/404.js + export default function Custom404() { + return <h1>404 - Page Not Found</h1>; + }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
対象ページ
他のページも同様になっている可能性はあるが、たまたま「エラーページのカスタマイズ」で発見したため
一旦、「エラーページのカスタマイズ」のみ記載
差分概要
同じページ内のサンプルコードでも、セミコロンの有無が揺れている。
対応内容
セミコロンありか無しかで統一をお願いしたい。
本家ではセミコロンがないようなので、本家に合わせる形が良いかと思います。
具体例
https://nextjs-ja-translation-docs.vercel.app/docs/advanced-features/custom-error-page#404-%E3%83%9A%E3%83%BC%E3%82%B8%E3%81%AE%E3%82%AB%E3%82%B9%E3%82%BF%E3%83%9E%E3%82%A4%E3%82%BA
The text was updated successfully, but these errors were encountered: