Stripe subscription update error
I'm working on a nuxt project with better-auth and stripe plugin. I have this code :
It redirect me on the stripe checkout page but I when I proceed I recieve this error :
18 Replies
update to 1.2.4-beta.4
I have updated to
v1.2.4-beta.4
and I have now ts errors.
I have this code :
@bekacru With this errors :
And this error on stripeClient
plugin :
add
baseUrl: "."
in your tsonfig and make sure to restart your ts serverIn which tsconfig the global one or the server one ?
the server one
That doesn't change anything
Here is my
server/tsconfig.json
@bekacru
Your solution doesn't workmake sure to update the stripe plugin to the latest beta version as well
Solution
@bekacru I have the version
1.2.4-beta.5
and there is stll a type error?
Yes
you need to upgrade both
better-auth
and @better-auth/stripe
@David did updating to beta fix your issue? I’m experiencing the same type error using the latest beta of both better-auth and the stripe plugin
Yes it fix my issue
@bekacru sorry for bothering you but I’m experiencing the same errors. Running
1.2.4-beta.8
on both packages. Also with ”baseUrl”: “.”
Type errors on both client and serverI have removed
baseUrl
from my tsconfig.json
I tried that too
Oh yes I think I get it
Try to clear your project remove
node_modules
, delete your lock file and your .nuxt
dir. Then, reinstall all.
@SwiftzerrI’ll try that
I appreciate the help
Still have the issue sadly
Just managed to solve this. For anyone else having the issue in the future, make sure you run
npx @better-auth/cli@latest generate
after adding the plugins to both the server and client. This should fix it.