0
votes

I have non-Ember objects that I want to access from other parts of my Ember CLI app. For instance, I have a facade object that I want to import into one of my components. This object isn't an Ember model or mixin or helper or anything like that, so it wouldn't fit into any of the standard Ember CLI folders. Where should I put it? And how do I import it?

1
you could try and add as an asset via brocfileMilkyWayJoe

1 Answers

2
votes

vendor folder would be good fit, it is imported by default. Otherwise you can make a new directory within app folder and call it whatever, then you can import it from within your Brocfile.js using app.import('app/customdir').