Deployment error
Hey ! I am trying to deploy my project in production but I am getting the following error : "400 Bad Request: InvalidModules: Hit an error while pushing:
Loading the pushed modules encountered the following
error:
Failed to analyze http.js: Uncaught Error: Neither apiKey nor config.authenticator provided
at _setAuthenticator [as _setAuthenticator] (../../node_modules/stripe/esm/stripe.core.js:163:12)
at new Stripe (../../node_modules/stripe/esm/stripe.core.js:99:13)
at <anonymous> (../../src/lib/stripe.ts:3:13)"
My application is already available (vercel) and my API keys are working fine.
Can someone help ?
2 Replies
Thanks for posting in <#1088161997662724167>.
Reminder: If you have a Convex Pro account, use the Convex Dashboard to file support tickets.
- Provide context: What are you trying to achieve, what is the end-user interaction, what are you seeing? (full error message, command output, etc.)
- Use search.convex.dev to search Docs, Stack, and Discord all at once.
- Additionally, you can post your questions in the Convex Community's <#1228095053885476985> channel to receive a response from AI.
- Avoid tagging staff unless specifically instructed.
Thank you!
Do you have any environment variables set on your dev deployment that might need to also get set in your prod deployment?
This error looks like it could be something like
new Stripe()
being called somewhere in your Convex code, and under the hood it's reading an environment variable that isn't set in your production Convex deployment (but probably is set in your Convex dev deployment since I'm guessing you got this working there before deploying)