Add plugin multiple times

Hello everybody,

in one of my projects I’m using the “Vheissu/aurelia-configuration”-Plugin that is quite good. Unfortunatly this plugin doesn’t support mulitple-configuration-files that leads to a really big and confusing configuration file.
Now my idea is (instead of creating some crazy and complex workarounds) to add the configuration plugin multiple times in my main.ts.

aurelia.use
    .plugin('aurelia-configuration1', config=>{}) //First Instance
    .plugin('aurelia-configuration2', config=>{}) //Second Instance

Is this possible respectively does anyone have another smart idea?

Best regards,