cleanup config

This commit is contained in:
peintnermax
2024-09-11 09:28:42 +02:00
parent 08a4cbff24
commit 98851663e1
5 changed files with 1 additions and 73 deletions

View File

@@ -1,24 +1,3 @@
# ZITADEL Login UI
This is going to be our next UI for the hosted login. It's based on Next.js 13 and its introduced `app/` directory.
## Custom Configuration
You can overwrite the default configuration by creating a `custom-config.ts` file in the root of the project. The `custom-config.ts` file should contain the settings you want to overwrite.
### Example `custom-config.ts`
```js
const customConfig = {
session: {
lifetime_in_seconds: 7200,
},
selfservice: {
change_password: {
enabled: false,
},
},
};
module.exports = customConfig;
```