Closed juliankmazo closed 8 years ago
+1
I'm also having this problem
+1
I am able to fix the build error at least with the following change. In index.js
From
module.exports = {
...
included: function(app) {
...
app.import('components/loading-slider.css');
}
};
To
module.exports = {
...
included: function(app) {
...
app.import('app/styles/components/loading-slider.css');
}
};
Thanks @vsymguysung, how do we override index.js while using the addon?
I just use a quick & dirty method until it gets resolved. Just open node_modules/ember-cli-loading-slider/index.js
and override it.
Replace the following app.import('components/loading-slider.css');
with app.import('app/styles/components/loading-slider.css');
.
The version 1.2.0 resolved the issue. Thanks much!
Hi. Just update my app to 1.13.12 and I'm having this issue