Files
linker/next.config.ts
2025-08-06 20:14:27 +02:00

10 lines
151 B
TypeScript

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