Files
My-TS-Fullstack/chapter2/next.config.ts
T
2026-08-29 22:43:18 +08:00

9 lines
156 B
TypeScript

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