Here is a snippet of code on how I was able to deploy the repository to all components.
import Ember from 'ember';
export default {
name: 'general-setup',
after: 'store',
initialize: function(container) {
container.injection('component', 'store', 'store:main');
}
};
source
share