Fixes https://github.com/payloadcms/payload/issues/8877 Current behaviour: `pnpx create-payload-app@beta`, select "Vercel Postgres", `.env` file: ```env # Added by Payload # should be POSTGRES_URL here! DATABASE_URI=postgres://postgres:<password>@127.0.0.1:5432/f PAYLOAD_SECRET=4415faad68a15727b4ebf582 ``` `payload.config.ts`: ```ts db: vercelPostgresAdapter({ pool: { connectionString: process.env.POSTGRES_URL || '', }, }), ```