Skip to content

Commit

Permalink
reject unauthorized
Browse files Browse the repository at this point in the history
  • Loading branch information
TangoYankee committed Jun 18, 2024
1 parent 1deb457 commit f41c6c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion drizzle.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export default {
user: process.env.DATABASE_USER,
password: process.env.DATABASE_PASSWORD,
database: process.env.DATABASE_NAME!,
ssl: process.env.DATABASE_ENV === "production",
ssl: {
rejectUnauthorized: false,
},
},
} satisfies Config;

0 comments on commit f41c6c3

Please sign in to comment.