import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  /* config options here */
  reactCompiler: true,
  transpilePackages: ["@invite/shared"],
  experimental: { cpus: 1 },
};

export default nextConfig;
