forked from PolarisPyra/daphnis
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
compiler: {
|
|
styledComponents: true,
|
|
},
|
|
webpack: (config) => {
|
|
|
|
config.externals.push('@node-rs/argon2', '@node-rs/bcrypt');
|
|
return config;
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|