Files
zitadel/apps/login
2024-09-10 13:54:09 +02:00
..
2024-09-04 15:06:16 +02:00
2024-08-12 09:20:23 +02:00
2024-09-09 10:31:31 +02:00
2024-09-10 13:54:09 +02:00
2024-08-12 11:31:18 +02:00
2024-09-06 11:48:48 +02:00
2024-09-10 11:57:09 +02:00
2023-04-03 13:39:51 +02:00
2024-08-14 09:32:37 +02:00
2024-09-06 13:53:18 +02:00
2024-08-12 09:43:32 +02:00
2024-09-10 10:04:43 +02:00
2024-08-12 09:43:32 +02:00
2024-09-10 11:57:09 +02: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;