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.
2 parents aca9d98 + dbb0c34 commit 42910f8Copy full SHA for 42910f8
index.js
@@ -13,8 +13,11 @@ module.exports = {
13
included: function(app) {
14
this._super.included(app);
15
16
- app.import(app.bowerDirectory + '/hammer.js/hammer.js');
17
- app.import(app.bowerDirectory + '/matchMedia/matchMedia.js');
+ if (!process.env.EMBER_CLI_FASTBOOT) {
+ app.import(app.bowerDirectory + '/hammer.js/hammer.js')
18
+ app.import(app.bowerDirectory + '/matchMedia/matchMedia.js');
19
+ };
20
+
21
app.import('vendor/propagating.js');
22
},
23
0 commit comments