DEV Community

Salah Hasanin
Salah Hasanin

Posted on

Answer: Angular - How to fix 'property does not exist on type' error?

It usually happens when you develop Angular applications. To solve this just shut down the server & start it again:

$ ng serve 

Explanation

This happens because when you start the application, The server is actually serving the bundles(JavaScript/CSS/HTML... output files) stored in the dist folder. Sometimes, when you make…

Top comments (0)