๐งช Example Configs
โ Default Config (used as fallback)
1// default.config.js2export default {3 port: 8080,4 debug: false5};
โ User Config (with default export)
1// custom.config.js2export default {3 port: 4000,4 debug: true,5 featureFlag: true6};
โ User Config (with named exports)
1// custom.config.js2export const port = 5000;3export const debug = true;
๐ง
hbh-cclsupports both default and named exports โ whichever is present.