How to debug addPasskey not working in Production (Vercel)?
Having configured the
passkey
plugin, I can add a passkey locally/development but not in production (Vercel).
I'm using a simple button in NextJS to trigger adding a passkey:
Which locally, prompts my browser (Firefox or Chrome) to a add a passkey.
However, in production on Vercel, I see the GET request to:
And the response looks ok (I think?):
But the browser prompt to add the passkey doesn't trigger/appear. And there's no subsequent /passkey/verify-registration
POST request as there is locally.
I can't figure out what the issue could be as I'm not seeing any errors in my browser or Vercel's logs.
Any help on where to start debugging this would be appreciated. ๐9 Replies
Hey, I've never used the Passkey plugin, but I can still try and help.
Looking through the docs, I noticed an origin option. Did you add this?

Yep. I've tried setting that to my NextJS domain, but unfortunately it didn't work. It's so weird not getting any errors at all.
btw, Thanks for replying.
Just saw in the logs:
GET /.well-known/webauthn 404
Hmm.
I assume it's meant to hit
/api/auth/.well-known/webauthn
?
Not super sure ๐
yep. my assumption too. I'm going to check if that end point is hit on my local (working) env
Yeah
just found this thread on GitHub: WebAuthn works locally, but not in production - https://github.com/MasterKale/SimpleWebAuthn/issues/345. Out now, so gonna run through it a bit later.
GitHub
Issues ยท MasterKale/SimpleWebAuthn
WebAuthn, Simplified. A collection of TypeScript-first libraries for simpler WebAuthn integration. Supports modern browsers, Node, Deno, and more. - Issues ยท MasterKale/SimpleWebAuthn
Will update later if I find anything. ๐
Sure, i'll try my best to help
Thank you. ๐
Couldn't figure out what the issue was.
Think i'll post on the Vercel repo. It may be something specific to their platform
Thanks for you help