In my application developed using ember-cli, I also need external resources such as bootstrap; Now I import it through Brocfile:
app.import('bower_components/bootstrap/dist/css/bootstrap.css'); app.import('bower_components/bootstrap/dist/js/bootstrap.js');
Is it possible to use a CDN instead of a local file, also defining a callback to the local file if there is no CDN?
source share