1.0.3 • Published 5 years ago

ember-cli-content-for-nested v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

ember-cli-content-for-nested

npm version

ember-cli nested addons contentFor workaround

Usage

// index.js
const contentForNested = require('ember-cli-content-for-nested');

module.exports = {
  contentFor: contentForNested,
  // or
  contentFor(type, { rootURL }) {
    return contentForNested.apply(this, [...arguments, () => {
      switch (type) {
        case 'head':
          return `<link rel="stylesheet" href="${rootURL}assets/normalize.css">`;
      }
    }]);
  }
};