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