Ember 3.13 added a feature that allows placing component templates inside the components folder, alongside the component JavaScript files. This is now the officially suggested location to place components.
I ran into this when trying to deploy to Heroku, most of my CSS was missing - turned out to be because the component template files weren't included in the purgeCSS configuration
Ember 3.13 added a feature that allows placing component templates inside the
components
folder, alongside the component JavaScript files. This is now the officially suggested location to place components.Ref: https://blog.emberjs.com/2019/09/25/ember-3-13-released.html Ref: https://github.com/emberjs/rfcs/blob/master/text/0481-component-templates-co-location.md
I ran into this when trying to deploy to Heroku, most of my CSS was missing - turned out to be because the component template files weren't included in the purgeCSS configuration