two/web/core/config.js
GnomeZworc cf8661ff7e
web: start: premier j'ai d'un dashboard modulaire
Signed-off-by: GnomeZworc <nicolas.boufidjeline@g3e.fr>
2026-05-29 23:36:59 +02:00

6 lines
263 B
JavaScript

// Single source of truth for configuration.
// Phase 2: replace the fetch with a call to the orchestrator.
const response = await fetch('./config.json')
if (!response.ok) throw new Error('Failed to load config.json')
export const config = await response.json()