mirror of
https://github.com/Zippland/worth-calculator.git
synced 2026-01-19 01:21:03 +08:00
11 lines
179 B
TypeScript
11 lines
179 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
experimental: {
|
|
reactCompiler: true
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|