Analytics sign-in
This deployment expects a token. Enter the same value as ANALYTICS_DASHBOARD_TOKEN in Vercel (see below). It is stored in this browser until you sign out.
The server accepts the default token my_environment_key until you set ANALYTICS_DASHBOARD_TOKEN in Vercel to something else (then use that value here).
Where does the token come from?
Vercel does not generate this value for you. You invent a long random string (for example 32+ characters), add it to your project, then type the same string here.
- Open Vercel Dashboard → your team → the sunsplashwebsite project.
- Go to Settings → Environment Variables.
- Add name
ANALYTICS_DASHBOARD_TOKEN, value = your chosen secret, environments = Production (and Preview if you use it).
- Save, then Redeploy so serverless functions pick up the new variable.
Optional: generate a password in a password manager, or run node -e "console.log(require('crypto').randomBytes(24).toString('hex'))" locally and paste the output as the value.