mirror of
https://github.com/vercel/next-learn.git
synced 2026-06-22 20:25:48 +00:00
9 lines
133 B
JavaScript
9 lines
133 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
ppr: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|