import type { NextConfig } from "next"; const nextConfig: NextConfig = { reactStrictMode: true, compiler: { styledComponents: true, }, turbopack: { root: __dirname, }, }; export default nextConfig;