13 lines
222 B
TypeScript
13 lines
222 B
TypeScript
import type { NextConfig } from "next"
|
|
|
|
const nextConfig: NextConfig = {
|
|
experimental: {
|
|
useCache: true,
|
|
reactCompiler: {
|
|
compilationMode: "all"
|
|
}
|
|
}
|
|
}
|
|
|
|
export default nextConfig
|