Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
9 lines
156 B
TypeScript
9 lines
156 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
reactCompiler: true,
|
|
};
|
|
|
|
export default nextConfig;
|