I have a project using a Meteor + Blaze + Spacebars stack.
Whenever I have an error inside one of the HTML files (which are processed with Spacebars), the html is not loaded on the client. This is fine, except the only error I get from this is something like Uncaught Error: No such template: <template-name>.
Is there a way to verify which HTML files fail to compile and maybe get some specific errors?
I think you have no html errors, but you didn't imported your template. Just to remind:
import child templates before parent templates;
import
htmltemplate file before related.jsfilecheck if you are using correct include syntax and template name.
example:
Here, the template
dashboarduses templateleftCol.leftColis a template name (<template name="leftCol">), not a file name.