learnhouse/front/next.config.js

10 lines
187 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: true,
compiler: {
styledComponents: true,
},
};
module.exports = nextConfig;