Password encryption works on edge runtime
Unanswered
American Crocodile posted this in #help-forum
American CrocodileOP
I’ve been trying all packages for this but none of them works on edge runtime
3 Replies
@American Crocodile I’ve been trying all packages for this but none of them works on edge runtime
If you haven't tried this, i suggest you try it and see if it fixes your problem, although in my case after a while it started to give you other types of problems again.
I would suggest you move to bcryptjs to avoid these problems, although it is still not the best option, or opt to try other auth alternatives, such as better-auth or set up a back-end in another language that you can use with a rewrite from next.config.ts so that it does the encryptions.
https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites
I would suggest you move to bcryptjs to avoid these problems, although it is still not the best option, or opt to try other auth alternatives, such as better-auth or set up a back-end in another language that you can use with a rewrite from next.config.ts so that it does the encryptions.
const nextConfig: NextConfig = {
/* config options here */
compiler: {
removeConsole: {
exclude: ["error"],
},
},
webpack: (config) => {
config.externals = [...config.externals, "bcrypt"];
return config;
},
};
https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites