//update in new version of next.js
// at next.config.js add styledComponents:true in compiler
@type {import('next').NextConfig}
const nextConfig = {
/* config options here */
reactStrictMode:true,
compiler:{
styledComponents:true,
}
}
export default nextConfig