Escape the chaos of city life and embrace luxury and serenity with this breathtaking seaside villa. Here’s why it’s the ideal investment for your peace of mind.
Steps to Add .env Variables in Vercel Go to your Vercel Dashboard Visit: https://vercel.com/dashboard
Click on the project you want to update.
Navigate to Settings → Environment Variables In the left sidebar, click on "Settings" → scroll to "Environment Variables".
Add Your Variables
Click “Add”.
Enter the variable name (e.g., SMPTP_USERNAME)
Enter the value (e.g., youremail@gmail.com)
Select the environment(s): ✅ Production ✅ Preview (for branches, PRs) ✅ Development (for vercel dev)
Click Save
Redeploy the Project After adding or changing environment variables, you must trigger a redeploy to apply them.
Go to the Deployments tab
Click "Redeploy" on the latest production deployment
🔁 Optional: Add .env.local for Local Development Create a file in your local project root:
bash Copy Edit touch .env.local And inside:
env Copy Edit
SMPTP_USERNAME=youremail@gmail.com
SMPTP_PASSWORD=your_app_password
⚠️ Do not commit this file to GitHub if it contains secrets.