wisesplit/next.config.js

14 lines
206 B
JavaScript

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