PageType
PageType = 'product' | 'cart' | 'checkout' | 'upsell' | 'receipt'Source: global.ts:1626
Which stage of the funnel a page represents. Drives page-specific behavior and analytics.
Set with <meta name="next-page-type" content="checkout">, or with window.nextConfig.pageType — the meta tag wins over the config. It is a meta tag only: there is no element attribute for it, and a value written that way is never read.
Example
CODE
<meta name="next-page-type" content="upsell">