From 311b518fb34780e27e2ff2e735f8509b4211cc18 Mon Sep 17 00:00:00 2001 From: jamesqquick Date: Mon, 2 Mar 2026 09:22:51 -0600 Subject: [PATCH] remove references to ppr in catalyst docs since it was removed in catalyst 1.3.5 --- docs/storefront/catalyst/getting-started/deploying/overview.mdx | 1 - .../catalyst/getting-started/guides/mailchimp-newsletter.mdx | 1 - docs/storefront/catalyst/overview.mdx | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docs/storefront/catalyst/getting-started/deploying/overview.mdx b/docs/storefront/catalyst/getting-started/deploying/overview.mdx index ae6aadbab..7fd33a408 100644 --- a/docs/storefront/catalyst/getting-started/deploying/overview.mdx +++ b/docs/storefront/catalyst/getting-started/deploying/overview.mdx @@ -6,7 +6,6 @@ Catalyst depends on the following Next.js features which must be supported by yo * [Incremental Static Regeneration (ISR)](https://nextjs.org/docs/app/building-your-application/data-fetching/incremental-static-regeneration) * [Data Cache](https://nextjs.org/docs/app/building-your-application/caching#data-cache) -* [Partial Prerendering (PPR)](https://nextjs.org/docs/app/building-your-application/rendering/partial-prerendering) * [Middleware](https://nextjs.org/docs/app/building-your-application/routing/middleware) ## Environment Variables diff --git a/docs/storefront/catalyst/getting-started/guides/mailchimp-newsletter.mdx b/docs/storefront/catalyst/getting-started/guides/mailchimp-newsletter.mdx index 7c7ab55af..1b8cba057 100644 --- a/docs/storefront/catalyst/getting-started/guides/mailchimp-newsletter.mdx +++ b/docs/storefront/catalyst/getting-started/guides/mailchimp-newsletter.mdx @@ -51,7 +51,6 @@ export default async function DefaultLayout({ params, children }: Props) { ); } -export const experimental_ppr = true; ``` Notice we used the `lazyOnload` strategy! This will prevent the script from loading until the browser has processed all the critical interactive elements and scripts. diff --git a/docs/storefront/catalyst/overview.mdx b/docs/storefront/catalyst/overview.mdx index 936f144ea..ca0511160 100644 --- a/docs/storefront/catalyst/overview.mdx +++ b/docs/storefront/catalyst/overview.mdx @@ -32,7 +32,7 @@ Out-of-the-box, Catalyst has the following capabilities you can use to further b * **Scalable GraphQL implementation**. Catalyst features scalable implementation of the GraphQL Storefront API. * **Minimal infrastructure dependencies**. Catalyst can be deployed to any hosting provider that supports Node.js. -* **Making the most of modern Next.js features**. Catalyst uses [React server components](https://nextjs.org/docs/app/building-your-application/rendering/server-components) and [Suspense](https://react.dev/reference/react/Suspense) boundaries in preparation for [partial pre-rendering](https://nextjs.org/learn/dashboard-app/partial-prerendering). +* **Making the most of modern Next.js features**. Catalyst uses [React server components](https://nextjs.org/docs/app/building-your-application/rendering/server-components) and [Suspense](https://react.dev/reference/react/Suspense). * **Components**. Catalyst provides _functionally_ complete ecommerce components and a pre-optimized site architecture for performance, SEO, and accessibility. * **Unopinionated visual design**. Visually, Catalyst is a "blank sheet of paper" that's ready to be transformed into a stellar ecommerce brand. Catalyst components use [Tailwind CSS](https://tailwindcss.com/) to accelerate development.