This repository has been archived on 2026-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
nyx/tenants/loop42/config.ts
Nico d6337c1ece Tenant-specific OIDC: separate Zitadel projects per tenant
Each tenant config now includes oidcClientId. Auth composable reads
client ID from tenant config instead of hardcoded fallback. Dev tenant
uses restricted Zitadel project (role-check enabled, developer grant).
Added NODE_ENV=production to env files to fix --mode dev builds.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-01 17:37:16 +02:00

18 lines
359 B
TypeScript

import type { TenantConfig } from '../../src/tenant';
const config: TenantConfig = {
id: 'loop42',
name: 'loop42',
domain: 'loop42.de',
defaultTheme: 'loop42',
oidcClientId: '365996029172056091',
features: {
graph: false,
trace: false,
viewer: false,
devTools: false,
},
};
export default config;