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
Getting this error when I build in prod:
[nextron] Next not found in both dependencies and devDependencies.
It's due to this code:
nextron/lib/configs/useExportCommand.ts
Lines 26 to 32 in 6907722
next is getting pulled from a root monorepo. The solution would be to add this line:
next
require('next/package.json').version
This way it evaluates the package correctly.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Getting this error when I build in prod:
[nextron] Next not found in both dependencies and devDependencies.
It's due to this code:
nextron/lib/configs/useExportCommand.ts
Lines 26 to 32 in 6907722
next
is getting pulled from a root monorepo. The solution would be to add this line:This way it evaluates the package correctly.
The text was updated successfully, but these errors were encountered: