File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
docs/pages/getting-started/adapters Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ import { Pool } from "@neondatabase/serverless"
6363
6464export const { handlers, auth, signIn, signOut } = NextAuth (() => {
6565 // Create a `Pool` inside the request handler.
66- const pool = new Pool ({ connectionString: process .env .DATABASE_URL });
66+ const pool = new Pool ({ connectionString: process .env .DATABASE_URL })
6767 return {
6868 adapter: PostgresAdapter (pool ),
6969 providers: [],
@@ -107,7 +107,7 @@ import { Pool } from "@neondatabase/serverless"
107107
108108export const { handle, signIn, signOut } = SvelteKitAuth (() => {
109109 // Create a `Pool` inside the request handler.
110- const pool = new Pool ({ connectionString: process .env .DATABASE_URL });
110+ const pool = new Pool ({ connectionString: process .env .DATABASE_URL })
111111 return {
112112 adapter: PostgresAdapter (pool ),
113113 providers: [],
You can’t perform that action at this time.
0 commit comments