2️⃣ Load it in your app
1import { loadConfig } from 'hbh-ccl';3const config = await loadConfig({4 configName: 'custom.config.js', // optional5 defaultConfigPath: './default.config.js', // required6 verbose: true // optional7});9console.log('Loaded Config:', config);
🔍 If the config isn’t found in
./or./config/, it will load the fallback fromdefaultConfigPath.