-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
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
Incompatible with nextjs v15 #1414
Comments
Fix here: #1415 |
I actually noticed another error: Honeybadger (the react package specifically) imports |
Hey @phikes, thanks for reporting this!
I've seen your PR (much appreciated!), I am planning to take another look my self with nextjs v15 as well. |
What are the steps to reproduce this issue?
What happens?
Build fails with:
What were you expecting to happen?
Build doesn't fail
Any logs, error output, etc?
See above
Any other comments?
This is because of an incorrect version check here. This line checks if the major version is greater than 14 and the minor version is greater than 3 (regardless of the major version). Instead the check should read something like:
(+nextJsVersion[0] === 14 && +nextJsVersion[1] >= 3) || +nextJsVersion[0] > 14
What versions are you using?
Operating System: …
Package Name: …
Package Version: …
Browser Version: …
The text was updated successfully, but these errors were encountered: