mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-18 16:45:11 +00:00
16 lines
285 B
JavaScript
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;
|