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