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