Describe the Bug
Hey, running payload migrate gives this code:
import { MigrateUpArgs, MigrateDownArgs, sql } from "@payloadcms/db-postgres";
Which fails in build time
Every time I have to change it to:
import type { MigrateUpArgs, MigrateDownArgs } from "@payloadcms/db-postgres";
import { sql } from "@payloadcms/db-postgres";
and then it works
Link to the code that reproduces this issue
/
Reproduction Steps
Create a migration with postgres and deploy to vercel.
Which area(s) are affected? (Select all that apply)
db: postgres
Environment Info