You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run (ng serve) -> page loads and the app works. you see "app works" in the browser.
go into the src/app/app.component.ts.
change the 'templateUrl' metadata from templateUrl: './app.component.html',
To writting backtick because I can't escape it in this editor. templateUrl: [backtick]./app.component.html[backtick]
reload page or re-run ng serve
Expected result
the page would still load as it did before
Actual result
the page shows "./app.component.html" in the browser
the text 'App works' does not appear.
The log given by the failure.
no error logs in the console
Mention any other details that might be useful.
It should be noted that using backticks for the "selector" works as expected.
I have not tested to see if this also fails for "styleUrls" metadata.
In converting my project from systemjs to use angular-cli, this eventually came out as the culprit for downstream issues.