mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-11 09:51:47 +00:00
* Update to next v15, switch to pnpm * Delete package-lock.json * Add PPR * Update to next@canary * Update starter-example to next@canary * Update file extension * Update ts compiler options to match CNA * Fix ts errors
10 lines
141 B
JavaScript
10 lines
141 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const nextConfig = {
|
|
experimental: {
|
|
ppr: 'incremental',
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|