This commit is contained in:
peintnermax
2024-09-10 13:57:09 +02:00
parent 3d33b36473
commit e4739b8812

View File

@@ -8,14 +8,17 @@ You can overwrite the default configuration by creating a `custom-config.ts` fil
### Example `custom-config.ts`
```typescript
import { Config } from "./default-config";
const customConfig: Partial<Config> = {
```js
const customConfig = {
session: {
lifetime_in_seconds: 7200,
},
selfservice: {
change_password: {
enabled: false,
},
},
};
export default customConfig;
module.exports = customConfig;
```