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)

Most upvoted comments

@rwwagner90 so in your index.js file, when you where calling super on the included method, you where just doing this._super.included(app);. It looks like you are needing to do this._super.included.apply(this, arguments);.