subman-nextjs/next.config.mjs

10 lines
207 B
JavaScript
Raw Normal View History

2024-06-11 08:16:34 +00:00
/** @type {import('next').NextConfig} */
2024-09-12 14:53:15 +00:00
const nextConfig = {
webpack: (config) => {
config.externals.push("@node-rs/argon2", "@node-rs/bcrypt");
return config;
},
};
2024-06-11 08:16:34 +00:00
export default nextConfig;