Files
linker/next.config.ts
2025-06-27 19:05:44 +02:00

9 lines
153 B
TypeScript

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