Files
stack/examples/partial-prerendering/next.config.mjs
T

9 lines
131 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
ppr: true,
},
};
export default nextConfig;