From 0274f13332396aed79e5be01762df8d210be40c2 Mon Sep 17 00:00:00 2001 From: Bereket Engida Date: Sat, 7 Sep 2024 19:44:02 +0300 Subject: [PATCH] chore: try bcrypt --- examples/next-js/next.config.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/next-js/next.config.mjs b/examples/next-js/next.config.mjs index 00058aa800..4edbdd2521 100644 --- a/examples/next-js/next.config.mjs +++ b/examples/next-js/next.config.mjs @@ -1,9 +1,9 @@ /** @type {import("next").NextConfig} */ const nextConfig = { webpack: (config) => { - config.externals.push("argon2"); + config.externals.push("@node-rs/argon2", "@node-rs/bcrypt"); return config; - }, + } } export default nextConfig; \ No newline at end of file