# This file should be copied to .env.local and modified with your environment variables to connect to your remote Sitecore instance. # To secure the Sitecore editor endpoint exposed by your Next.js app # (`/api/editing/render` by default), a secret token is used. This (client-side) JSS_EDITING_SECRET= # Your Sitecore site name. # The value of the variable represents the default/configured site. NEXT_PUBLIC_SITECORE_SITE_NAME= # Your default app language. NEXT_PUBLIC_DEFAULT_LANGUAGE= # Your unified Sitecore Edge Context Id for server-side use. # This will be used over any Sitecore Preview / Delivery Edge variables (above). SITECORE_EDGE_CONTEXT_ID= # Your Sitecore Edge Context Id for client-side use. # Will be used as a fallback if separate SITECORE_EDGE_CONTEXT_ID value is not provided NEXT_PUBLIC_SITECORE_EDGE_CONTEXT_ID= # An optional Sitecore Personalize scope identifier. # This can be used to isolate personalization data when multiple XM Cloud Environments share a Personalize tenant. # This should match the PAGES_PERSONALIZE_SCOPE environment variable for your connected XM Cloud Environment. NEXT_PUBLIC_PERSONALIZE_SCOPE= # Timeout (ms) for Sitecore CDP requests to respond within. Default is 400. PERSONALIZE_MIDDLEWARE_CDP_TIMEOUT= # Timeout (ms) for Sitecore Experience Edge requests to respond within. Default is 400. PERSONALIZE_MIDDLEWARE_EDGE_TIMEOUT= # Sitecore Content SDK npm packages utilize the debug module for debug logging. # https://www.npmjs.com/package/debug # Set the DEBUG environment variable to 'core:*' to see all logs: #DEBUG=core:* # Or be selective and show for example only layout service logs: #DEBUG=core:layout # Or everything BUT layout service logs: #DEBUG=core:*,-core:layout