Skip to content

Commit 042c548

Browse files
committed
fix(vercel): default database url
1 parent b46fc37 commit 042c548

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/presets/vercel.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default definePreset({
99
logger.warn('Deploying sqlite database to Vercel is not possible, switching to Postgres database with `POSTGRES_URL`.')
1010
nitroConfig.runtimeConfig!.content!.database = {
1111
type: 'postgres',
12-
url: 'process.env.POSTGRES_URL',
12+
url: process.env.POSTGRES_URL,
1313
}
1414
}
1515

0 commit comments

Comments
 (0)