Maybe I'm doing something wrong like having ember-cli-bootstrap as a devDependency in package.json but if I do a ember serve --environment production the app complains that it cannot find a property on my controller called bs-modal. Obviously what's going on is that it's not bringing in the library that registers bs-modal as a component.
My Brocfile looks like...
var app = new EmberApp({
'ember-cli-bootstrap': {
'importBootstrapCSS': false
}
});
Maybe I'm doing something wrong like having ember-cli-bootstrap as a devDependency in package.json but if I do a
ember serve --environment production
the app complains that it cannot find a property on my controller calledbs-modal
. Obviously what's going on is that it's not bringing in the library that registersbs-modal
as a component.My Brocfile looks like...
Any thoughts?