I'm trying to change the `indentUnit` default from 2 to 4, and this is how I've tried initializing Yasgui: ```js const yasgui = new Yasgui(document.getElementById("yasgui"), { requestConfig: { endpoint: url, copyEndpointOnNewTab: true, }, endpointCatalogueOptions: { getData: function () { return yasguiEndpoints }, keys: [], }, yasqe: { defaults: { indentUnit: 4 } }, } ``` But the Yasqe indent is still set at 2. What am I doing wrong?
I'm trying to change the
indentUnitdefault from 2 to 4, and this is how I've tried initializing Yasgui:But the Yasqe indent is still set at 2. What am I doing wrong?