Files
gitbook/packages/gitbook-v2/next.config.mjs
2025-01-31 12:28:41 +01:00

16 lines
285 B
JavaScript

// @ts-check
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
experimental: {
useCache: true,
// We can't use dynamicIO because it doesn't accept reading params in the root layout
// dynamicIO: true,
},
};
export default nextConfig;