mirror of
https://github.com/SrIzan10/puntos.git
synced 2026-06-06 01:06:59 +00:00
10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
webpack: (config) => {
|
|
config.externals.push("@node-rs/argon2", "@node-rs/bcrypt");
|
|
return config;
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|