Files
nextjs-shadcn/next.config.ts
2026-04-13 15:34:57 -04:00

12 lines
206 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
typescript: {
ignoreBuildErrors: true,
},
reactCompiler: true,
};
export default nextConfig;