learnhouse/front/next.config.js
2023-01-08 21:32:12 +01:00

13 lines
229 B
JavaScript

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