We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e5df18 commit af78616Copy full SHA for af78616
index.js
@@ -7,7 +7,10 @@ module.exports = {
7
included: function(app) {
8
this._super.included(app);
9
10
- app.import(app.bowerDirectory + '/bootstrap-datepicker/dist/js/bootstrap-datepicker.js');
11
- app.import(app.bowerDirectory + '/bootstrap-datepicker/dist/css/bootstrap-datepicker.css');
+ if (process.env.EMBER_CLI_FASTBOOT !== 'true') {
+ app.import(app.bowerDirectory + '/bootstrap-datepicker/dist/js/bootstrap-datepicker.js');
12
+ app.import(app.bowerDirectory + '/bootstrap-datepicker/dist/css/bootstrap-datepicker.css');
13
+ }
14
}
15
};
16
+
0 commit comments