fixed some routing issues

This commit is contained in:
Rolf
2026-03-18 14:35:27 +01:00
parent 1a78ef9656
commit a4382af9be
2 changed files with 17 additions and 6 deletions
+1 -1
View File
@@ -2,5 +2,5 @@ import { drizzle } from 'drizzle-orm/postgres-js'
import postgres from 'postgres'
import * as schema from './schema'
const client = postgres(process.env.DATABASE_URL!)
const client = postgres(process.env.DATABASE_URL!, { connect_timeout: 10 })
export const db = drizzle(client, { schema, logger: true })