Files
next-learn/dashboard/final-example/next.config.mjs
Delba de Oliveira deca7c766f Add PPR (#745)
* 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
2024-06-19 08:50:40 +01:00

10 lines
141 B
JavaScript

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