learnhouse/front/next.config.js
2022-09-21 20:55:51 +02:00

10 lines
186 B
JavaScript

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