import type { NextConfig } from "next";

const nextConfig: NextConfig = {
  reactCompiler: true,
  turbopack: {},
  typescript: {
    ignoreBuildErrors: false,
  },
};

export default nextConfig;