For my EmberJS app, I precompile all of my handlebars templates, so they are being loaded as straight Javascript files.
The problem is that these precompiled templates are not making their way into the Ember container like I thought that they would - I get the following error when I specify a template for my view.
Uncaught Error: assertion failed: You specified the templateName "application" for <MyApp.ApplicationView:ember164>, but it did not exist.
Here is my view code.
window.MyApp.ApplicationView = Ember.View.extend({
templateName: 'application'
});
I stepped through the execution and saw that the views do not exist in the Ember container. Is there something special I need to do to register precompiled templates with the container? If so, how?
Edit: I've been compiling the templates with the handlebars npm package.