beanz
beanz
BABetter Auth
Created by benjick on 5/26/2025 in #help
SERVER_ERROR: [Error: The server does not support SSL connections]
I was running into a similar issue and switched to this:
export const db = drizzle({
connection: {
connectionString: process.env.DATABASE_URL,
},
schema,
});
export const db = drizzle({
connection: {
connectionString: process.env.DATABASE_URL,
},
schema,
});
7 replies
BABetter Auth
Created by benjick on 5/26/2025 in #help
SERVER_ERROR: [Error: The server does not support SSL connections]
Do you have ssl enabled in your db object?
7 replies