Files
linker/next.config.ts
2025-08-09 19:17:00 +02:00

13 lines
222 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
experimental: {
useCache: true,
reactCompiler: {
compilationMode: "all"
}
}
}
export default nextConfig