next.config.js

1/** @type {import('next').NextConfig} */
2const nextConfig = {
3  compiler: {
4    styledComponents: true,
5  },
6};
7
8module.exports = nextConfig;