ember-component-css: TypeError: Cannot read property 'namespacing' of undefined
I’m trying to use this in an addon, and it seems to be upset that there is not a config. Shouldn’t the defaults apply, if I supply no config?
It throws: TypeError: Cannot read property 'namespacing' of undefined
I tried adding the config in ember-cli-build.js
and tests/dummy/config/environment.js
and neither seemed to help.
About this issue
- Original URL
- State: closed
- Created 8 years ago
- Comments: 15 (9 by maintainers)
@rwwagner90 so in your
index.js
file, when you where calling super on the included method, you where just doingthis._super.included(app);
. It looks like you are needing to dothis._super.included.apply(this, arguments);
.