Files
worth-calculator/next.config.ts
2025-04-01 12:51:36 +08:00

11 lines
179 B
TypeScript

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