Tuesday, January 25, 2022

Tips for faster angular Development

  • Use Host Module Replacement
    • ng serve --hmr  
  • Open browser automatically
    • ng serve --hmr -o
  • Have multiple terminal Open in VS Code.

Thursday, January 20, 2022

Angular Error - Node Sass does not yet support your current environment: Windows 64-bit with Unsupported runtime

Mostly this happens when there is conflict in the npm version installed vs the version which is your project using.

Best way worked for me is to uninstall node-saas and install saas. 

Commands to follow


1. npm uninstall node-sass

2. npm install sass

Thanks!