Use the Vercel Deployment Protection feature with JSS apps
Deployment Protection is a feature of the Vercel cloud platform that allows developers and editors to limit access to their site deployments. Enabling this feature requires making some changes based on how your JSS app is configured.
To use Deployment Protection with JSS apps:
-
In your app's
scripts\config\plugins\fallback.tsfile, modify howpublicUrlis set. For example:RequestResponseconst publicUrlFallback = (process.env.NODE_ENV !== 'production' ? getPublicUrl() : ''); return Object.assign({}, config, { publicUrl: config.publicUrl || publicUrlFallback, });ImportantIf you're using one of your Deployment Protection enabled Vercel URLs as your rendering host endpoint for editing, you must complete the remaining steps in this procedure to enable Sitecore’s editing tools to use your Vercel deployment with Protection Bypass. Otherwise, no further changes are needed.
-
Configure the Protection Bypass token in Vercel.
-
Add the bypass token to your rendering host settings, depending on whether you use SXA or local file edits to configure your site settings:
-
If Vercel Deployment Protection is enabled for a deployment URL other than the automatically-generated one, and you are using this other URL as your rendering host endpoint, do the following in Vercel:
-
Add the
PUBLIC_URLenvironment variable. -
Set the new variable's value to the protocol and hostname used by your rendering host settings, such as
https://<vercel_deployment_url>.
ImportantRelative paths are often sufficient in preview deployments. You can set
PUBLIC_URL=''to use relative paths. This avoids potential CORS or CSP issues caused by cross-domain asset requests in dynamic Vercel environments. -
If you use the Protection Bypass token to access the site in normal mode, you must use both the x-vercel-protection-bypass and x-vercel-set-bypass-cookie headers, or use query string parameters, to properly render all the static assets.