From 811c71fdf71f104c71e0716f2fe2876cacabfa4a Mon Sep 17 00:00:00 2001 From: Ankur Datta <64993082+ankur-arch@users.noreply.github.com> Date: Mon, 20 Jan 2025 13:39:54 +0600 Subject: [PATCH] Update content/800-guides/1100-using-prisma-nuxt-module-with-prisma-postgres.mdx Co-authored-by: Nikolas --- .../1100-using-prisma-nuxt-module-with-prisma-postgres.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/800-guides/1100-using-prisma-nuxt-module-with-prisma-postgres.mdx b/content/800-guides/1100-using-prisma-nuxt-module-with-prisma-postgres.mdx index 0d9e9b6a1b..5d9198628c 100644 --- a/content/800-guides/1100-using-prisma-nuxt-module-with-prisma-postgres.mdx +++ b/content/800-guides/1100-using-prisma-nuxt-module-with-prisma-postgres.mdx @@ -197,7 +197,7 @@ Now that the Prisma Postgres instance is ready, update your Nuxt application to ```prisma file=prisma/schema.prisma datasource db { // edit-next-line - provider = "postgresql" + provider = "postgresql" url = env("DATABASE_URL") } ```