Hi, I deployed my Node.js project on Vercel, and my database is hosted on Supabase. I set the environment variables (DB_HOST, DB_USER, DB_PASSWORD, DB_NAME), but my app shows a connection error. DB_HOST=db.emtyjepwczgxglewnpzs.supabase.co DB_PORT=5432 DB_USER=postgres DB_PASSWORD=****** DB_NAME=postgres The app connects fine on my local machine, but on Vercel I get this error: javascript Copy code Error: getaddrinfo ENOTFOUND db.emtyjepwczgxglewnpzs.supabase.co Could you please explain the correct way to connect a Vercel project to a Supabase database? Should I adjust the connection string or use a specific Vercel configuration? Thank you!
