diff --git a/src/content/13/en/part13a.md b/src/content/13/en/part13a.md index 4c13c5b9299..92ec98857ca 100644 --- a/src/content/13/en/part13a.md +++ b/src/content/13/en/part13a.md @@ -301,12 +301,7 @@ Note: if you use Heroku, you might need an extra option in connecting the databa ```js const sequelize = new Sequelize(process.env.DATABASE_URL, { // highlight-start - dialectOptions: { - ssl: { - require: true, - rejectUnauthorized: false - } - }, + dialectOptions: {}, // highlight-end }) ```