mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-15 19:33:44 +00:00
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
import { Config } from "./default-config";
const customConfig: Partial<Config> = {
session: {
lifetime_in_seconds: 7200,
},
};
export default customConfig;