Skip to content
Snippets Groups Projects
next.config.mjs 182 B
Newer Older
AlexandrValgamov's avatar
AlexandrValgamov committed
/** @type {import('next').NextConfig} */
  const nextConfig = {
    /* config options here */
    compiler: {
      styledComponents: true,
    },
  }
   
  export default nextConfig