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>
18 lines
356 B
TypeScript
18 lines
356 B
TypeScript
import type { TenantConfig } from '../../src/tenant';
|
|
|
|
const config: TenantConfig = {
|
|
id: 'dev',
|
|
name: 'loop42 Dev',
|
|
domain: 'loop42.dev',
|
|
defaultTheme: 'titan',
|
|
oidcClientId: '366683272559788059',
|
|
features: {
|
|
graph: true,
|
|
trace: true,
|
|
viewer: true,
|
|
devTools: true,
|
|
},
|
|
};
|
|
|
|
export default config;
|