diff --git a/dashboard/final-example/app/lib/data.ts b/dashboard/final-example/app/lib/data.ts index 6704fe9..028716d 100644 --- a/dashboard/final-example/app/lib/data.ts +++ b/dashboard/final-example/app/lib/data.ts @@ -150,6 +150,7 @@ export async function fetchInvoicesPages(query: string) { } export async function fetchInvoiceById(id: string) { + noStore(); try { const data = await sql` SELECT diff --git a/dashboard/final-example/next.config.js b/dashboard/final-example/next.config.js index dec7014..658404a 100644 --- a/dashboard/final-example/next.config.js +++ b/dashboard/final-example/next.config.js @@ -1,8 +1,4 @@ /** @type {import('next').NextConfig} */ -const nextConfig = { - experimental: { - ppr: true, - }, -}; +const nextConfig = {}; module.exports = nextConfig;