You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In production, we pre-install Build plugins in /opt/buildhome/.netlify-build-plugins. However, the repository is in /opt/build/repo. Therefore, trying to require a dependency of the site (also known as peer dependency) from a plugin does not work. This problem is described in details in this issue.
In the case of both this plugin and next-on-netlify, we are doing require('next'). We are doing this to allow users to choose their own Next.js version instead of forcing one (see #25). This currently fails in production due to the problem above.
The proper solution to this problem is detailed in this issue. However, this is not a quick fix, so we need an alternative in the meantime.
The only solution I can think of is the following: if we detect that the plugin is run in production, use require.resolve() to locate next. In practice this would mean lines like:
Instead of the hack suggested above, add next@^9.5.3 as a production dependency of @netlify/plugin-nextjs
This will make it harder for us to support Next.js 10, since this means @netlify/plugin-nextjs and next-on-netlify will use Next.js 9 even if the site is using Next.js 10. To fix this will require fixing how Build plugins are preinstalled (issue).
In production, we pre-install Build plugins in
/opt/buildhome/.netlify-build-plugins
. However, the repository is in/opt/build/repo
. Therefore, trying to require a dependency of the site (also known as peer dependency) from a plugin does not work. This problem is described in details in this issue.In the case of both this plugin and
next-on-netlify
, we are doingrequire('next')
. We are doing this to allow users to choose their own Next.js version instead of forcing one (see #25). This currently fails in production due to the problem above.The proper solution to this problem is detailed in this issue. However, this is not a quick fix, so we need an alternative in the meantime.
The only solution I can think of is the following: if we detect that the plugin is run in production, use
require.resolve()
to locatenext
. In practice this would mean lines like:would be changed to:
This is hacky. This would need to be done in
next-on-netlify
too.What do you think?
The text was updated successfully, but these errors were encountered: