I am working on multi tenant application in angular. For that am trying to apply css from different clients @import url('http://myserver/themes/ABC/css/component1.css');
@import url('http://myserver/themes/DEF/css/component1.css');
I want client name to be fetched from ts file and then import corresponding css.How can I do that?Please help me