fix(framework,types): correct example of database driver options (#10166)

This commit is contained in:
Riqwan Thamir
2024-11-19 16:32:31 +00:00
committed by GitHub
parent 5fb73e6698
commit 85f9c2b85a
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -274,7 +274,7 @@ export type ProjectConfigOptions = {
* module.exports = defineConfig({
* projectConfig: {
* databaseDriverOptions: process.env.NODE_ENV !== "development" ?
* { ssl: { rejectUnauthorized: false } } : {}
* { connection: { ssl: { rejectUnauthorized: false } } } : {}
* // ...
* },
* // ...