Fix: use custom pg wrapper instead of @vercel/postgres

This commit is contained in:
Deploy Bot
2026-02-19 14:53:59 +00:00
parent defd82c8df
commit 923d322273
3 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
import { sql } from '@vercel/postgres' import { sql } from '@/lib/db'
import { notFound } from 'next/navigation' import { notFound } from 'next/navigation'
import Link from 'next/link' import Link from 'next/link'
import Image from 'next/image' import Image from 'next/image'

View File

@@ -1,4 +1,4 @@
import { sql } from '@vercel/postgres' import { sql } from '@/lib/db'
import Image from 'next/image' import Image from 'next/image'
import Link from 'next/link' import Link from 'next/link'

View File

@@ -1,4 +1,4 @@
import { sql } from '@vercel/postgres' import { sql } from '@/lib/db'
import { notFound } from 'next/navigation' import { notFound } from 'next/navigation'
import Link from 'next/link' import Link from 'next/link'
import Image from 'next/image' import Image from 'next/image'