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:
parent
0dab1634b0
commit
13b31def80
|
@ -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! -%>
|
||||
|
|
Loading…
Reference in New Issue