ActionView::Template::Error (couldn't find file '' with type 'text/html'
Removing all webcomponents from assets/components/application.html.erb does not affect the error, but removing = html_import_tag 'application' from my views/layouts/application.html.haml "fixes" the issue (but, of course, leaves all webcomponents excluded).
The list of components I'm importing (though I don't believe this is relevant) is:
It's also worth noting that if any of these modules aren't present I get expected compilation errors, I only get this error when everything is accessible or when references are removed, leading me to believe most of the process is working correctly.
When rendering application.html, I get:
ActionView::Template::Error (couldn't find file '' with type 'text/html'
Removing all webcomponents from
assets/components/application.html.erb
does not affect the error, but removing= html_import_tag 'application'
from myviews/layouts/application.html.haml
"fixes" the issue (but, of course, leaves all webcomponents excluded).The list of components I'm importing (though I don't believe this is relevant) is:
It's also worth noting that if any of these modules aren't present I get expected compilation errors, I only get this error when everything is accessible or when references are removed, leading me to believe most of the process is working correctly.
Any idea what's going on?