ember-cli-bootstrap
ember-cli-bootstrap copied to clipboard
Breaks when doing a production build
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
}
});
Any thoughts?
same a #22