// @ts-check /** * @type {import('next').NextConfig} */ const nextConfig = { /* config options here */ reactStrictMode: true, compiler: { styledComponents: true, }, }; export default nextConfig;