mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 14:42:17 +00:00
10 lines
166 B
TypeScript
10 lines
166 B
TypeScript
import { Config } from "./default-config";
|
|
|
|
const customConfig: Partial<Config> = {
|
|
session: {
|
|
lifetime_in_seconds: 3600,
|
|
},
|
|
};
|
|
|
|
export default customConfig;
|