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
I've faced similar issue during development. The code below has helped me solve my problem. Now everything is loading exactly the way I want it.
System.import('bootstrap/css/bootstrap.css!').then(() => { System.import('./app.css!'); });
Thanks LazerBass for this suggestion.