We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
packageJson
undefined
The line checks for packageJson being falsy:
https://github.com/netlify/netlify-plugin-nextjs/blob/2849dc5f7c57e9fd827a939e067a871e4cb487b1/index.js#L21
However, when a site has no package.json, packageJson is an empty object. Therefore, Object.keys(packageJson).length === 0 should be used instead.
package.json
Object.keys(packageJson).length === 0