Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/storefront/catalyst/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down