I\'ve written the following in an Aurelia app
import \"bootstrap/css/bootstrap.css!\";
import \"./app.css!\";
and I want app.css second in sin
You could try to import the css using System.import. E.g. in your index.html:
System.import('bootstrap/css/bootstrap.css!').then(() => {
System.import('./app.css!');
});
But keep in mind that this way you have to make sure that system.js is served with your app. So you can't bundle your whole app as an self-executing bundle.