Files
nextjs-tutorial/next.config.ts
bigdeejay 19a7d45b7b git init
2025-01-22 17:58:47 +09:00

10 lines
159 B
TypeScript

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
experimental: {
ppr: 'incremental',
}
};
export default nextConfig;