I have an Express.js API running on Vercel with a PostgreSQL storage, but I can't get them to connect. My pool configuration in the API is as follows:
const { Pool } = require('pg');
const pool = new Pool({ user: process.env.DB_USER, host: process.env.DB_HOST, database: process.env.DB_NAME, password: process.env.DB_PASSWORD, port: process.env.DB_PORT});module.exports = pool;Do I need more pool configurations and I don’t know about them? This is my first complete project, it's a real estate website using SvelteKit, Express.js, and PostgreSQL. I'm new to hosting.