mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
74a19b7467
## Summary Remove redundant `#` from [error pages](https://github.com/vercel/next.js/tree/canary/errors). ## Description Follow up #52038 and #72263. Updated [template.txt](https://github.com/vercel/next.js/blob/canary/errors/template.txt) and clarified the header deps. Then rewrite as per the template. ### Improving Documentation - [x] Run `pnpm prettier-fix` to fix formatting issues before opening the PR. - [x] Read the Docs Contribution Guide to ensure your contribution follows the docs guidelines: https://nextjs.org/docs/community/contribution-guide Co-authored-by: Delba de Oliveira <32464864+delbaoliveira@users.noreply.github.com>
35 lines
1.3 KiB
Plaintext
35 lines
1.3 KiB
Plaintext
---
|
|
title: Opening a new Issue
|
|
---
|
|
|
|
## Why This Message Occurred
|
|
|
|
When `next info` was run, Next.js detected that it was not on the newest canary release.
|
|
|
|
`next@canary` is the canary version of Next.js that ships daily. It includes all features and fixes that have not been released to the stable version yet. Think of canary as a public beta.
|
|
|
|
Some issues may already be fixed in the canary version, so please verify that your issue reproduces before opening a new issue.
|
|
|
|
Run the following in the codebase:
|
|
|
|
```bash filename="Terminal"
|
|
npm install next@canary
|
|
```
|
|
|
|
or
|
|
|
|
```bash filename="Terminal"
|
|
yarn add next@canary
|
|
```
|
|
|
|
And go through the prepared reproduction steps once again, and check if the issue still exists.
|
|
|
|
## Useful Links
|
|
|
|
- [Video: How to Contribute to Open Source (Next.js)](https://www.youtube.com/watch?v=cuoNzXFLitc)
|
|
- [Contributing to Next.js](https://github.com/vercel/next.js/blob/canary/contributing.md)
|
|
- [Triaging issues](https://github.com/vercel/next.js/blob/canary/contributing/repository/triaging.md)
|
|
- [Verifying canary](https://github.com/vercel/next.js/blob/canary/.github/comments/verify-canary.md)
|
|
- [Adding a reproduction](https://github.com/vercel/next.js/blob/canary/.github/comments/invalid-reproduction.md)
|
|
- [Simplifying a reproduction](https://github.com/vercel/next.js/blob/canary/.github/comments/simplify-reproduction.md)
|