FIX: Ember CLI was being hijacked before potential errors

This was problematic if something like SCSS file throws an error as the
app would tell Ember CLI to bootstrap as if everything is fine and not
display the error.

The fix is to only hijack the rendering at the end of the template
instead of the beginning.
This commit is contained in:
Robin Ward 2021-09-08 15:34:41 -04:00
parent 0dab1634b0
commit 13b31def80
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,3 @@
<%- hijack_if_ember_cli! -%>
<!DOCTYPE html>
<html lang="<%= html_lang %>" class="<%= html_classes %>">
<head>
@ -129,3 +128,4 @@
<%- end %>
</body>
</html>
<%- hijack_if_ember_cli! -%>