From d3934392105f8fb49bb6a706e6f83c76a72d8eed Mon Sep 17 00:00:00 2001 From: Tim Whitney Date: Wed, 28 Aug 2024 13:26:14 -0600 Subject: [PATCH] chore(docs): update vercel postgres doc link (#11703) Co-authored-by: Nico Domino --- docs/pages/getting-started/adapters/pg.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/pages/getting-started/adapters/pg.mdx b/docs/pages/getting-started/adapters/pg.mdx index b96264595d..80ef5199f2 100644 --- a/docs/pages/getting-started/adapters/pg.mdx +++ b/docs/pages/getting-started/adapters/pg.mdx @@ -51,7 +51,7 @@ export const { handlers, auth, signIn, signOut } = NextAuth({ }) ``` -If you are using [Neon](https://neon.tech)'s PostgreSQL like [Vercel Postgres](https://vercel.com/docs/postgres), you can use `@neondatabase/serverless` to work with edge runtime. +If you are using [Neon](https://neon.tech)'s PostgreSQL like [Vercel Postgres](https://vercel.com/docs/storage/vercel-postgres), you can use `@neondatabase/serverless` to work with edge runtime. ```ts filename="./auth.ts" import NextAuth from "next-auth"