We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b391bc commit 5455f1eCopy full SHA for 5455f1e
1 file changed
index.js
@@ -60,8 +60,8 @@ module.exports = {
60
61
this.includeIcons = addonConfig.includeIcons !== false;
62
63
- this.hasSass =
64
- !!app.registry.availablePlugins['ember-cli-sass'] || !!app.registry.availablePlugins['ember-cli-sass-less'];
+ const addons = app.project?.addonPackages || app.registry?.availablePlugins;
+ this.hasSass = !!addons['ember-cli-sass'] || !!addons['ember-cli-sass-less'];
65
66
// CSS Files
67
if (!this.hasSass) {
0 commit comments