Using the Better Auth component in "use node" context
Ideally I want to re-use the users's password hash, which are hashed using
argon2id, this requires the node runtime instead of the default v8 runtime Convex uses.When adding
"use node" at the top of the /convex/auth.ts where I the betterAuth instance with the password hash override like so:this will causes the following errors (not only from
node:crypto also node:util fs, path and os)this essentially means I can't override the password hash?
