Update ForceToUseFakeDocument to false in appsettings.json

The `ForceToUseFakeDocument` property in the `Api` section of
`appsettings.json` was changed from `true` to `false`. This
modification alters the application's behavior to no longer
force the use of fake documents, potentially enabling the use
of real documents or other configurations as defined by the
application logic.
This commit is contained in:
2026-06-05 10:26:50 +02:00
parent 634043ebd9
commit d16a5020cb

View File

@@ -1,6 +1,6 @@
{
"Api": {
"BaseUrl": "",
"ForceToUseFakeDocument": true
"ForceToUseFakeDocument": false
}
}