daphnis/next.config.mjs

14 lines
275 B
JavaScript
Raw Normal View History

2024-06-29 05:22:22 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
compiler: {
styledComponents: true,
},
2024-06-29 05:22:22 +00:00
webpack: (config) => {
2024-06-29 05:22:22 +00:00
config.externals.push('@node-rs/argon2', '@node-rs/bcrypt');
return config;
},
};
export default nextConfig;