Not Rendering app.component.html
Angular is not rendering app.component.html page with app.component.ts if I run the Application from inside Webstorm with run. If I use instead „ng serve“ in the terminal Window it does render the html page.
Thank you for help.
Regards,
Karl-Heinz Anthe
Please sign in to leave a comment.
>if I run the Application from inside Webstorm with run
How do you run it from within Webstorm? You need using `ng serve` to start Angular CLI app, this can be done with either npm script (usually npm start in apps generated by CLI) or by running `ng serve` in terminal
See https://www.jetbrains.com/help/webstorm/2019.2/angular.html#angular_running_and_debugging
Thank you Elena for this quick help,
I was influenced by other programming languages like C++ where a run button compiled and create the application,
with angular it is a little bit different.
Regards,
Karl-Heinz