-
Notifications
You must be signed in to change notification settings - Fork 87
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
Error: Your next.config.js must set the "target" property to one of: serverless, experimental-serverless-trace for conditional target #97
Comments
@amuttsch hey! i've been thinking about this one and trying to come up with a clean, straightforward solution. in the meantime, some thoughts/questions:
we definitely do need a better way to "read" and support more complex configs. ideally we wouldn't have to check for serverless or experimental-serverless-trace at all, but the plugin will fail in all sorts of confusing ways if we don't do that check. perhaps an option is to simply extend the project's existing config and force it to be serverless with a rewrite regardless? food for thought, will run this one by some teammates this week :) |
Hi @lindsaylevine thanks for your response :-)
I think we are a more exotic use case and I'm not sure how many other projects have a similar setup like ours. Having this check is super important, especially if the plugin fails with cryptic error messages instead if the Maybe you or your teammates have more insights into this and can reason better to one or another solution. For us and our project it would be fine when the plugin just overrides the |
Hi @lindsaylevine and @amuttsch. I think the issue here is that the environment variables are set inside the build command script so they are not available to the plugin. Can you try: [build]
command = "yarn run build:serverless"
functions = "out_functions"
publish = "out_publish"
[[plugins]]
package = "@netlify/plugin-nextjs"
[context.production.environment]
NEXT_SERVERLESS = "true"
NODE_ENV = "production"
[context.server.environment]
NEXT_SERVERLESS = "false"
NODE_ENV = "production" Then |
Hi @erezrokah Thanks for the suggestion with the context, this works fine for us and we can remove the Feel free to close this issue then if there are no more todo's on our side :-) |
Thank you for following up @amuttsch. Good point about the
Just saw #100 (comment) |
I'm using a conditional to determine if our next application will be compiled in
server
orserverless
mode. The plugin, however, does not support this kind of config:My
netlify.toml
looks like this:The
build:serverless
task sets the environment variableNEXT_SERVERLESS
:"build:serverless": "yarn run clean && NODE_ENV=production NEXT_SERVERLESS=true SOURCE_MAPS_ENABLED=false next build",
A workaround is to
sed
the config in our CI pipeline before runningnetlify build
:The text was updated successfully, but these errors were encountered: