- https://angular-material-14-form-example.vercel.app/
- https://material.angular.io/
- https://github.com/jeevan-lal/Angular-Material-14-Form-Example
npm install -g @angular/cli
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
ng new my-app
ng serve --open
ng build
# Insert a new Component
ng generate component xyz
ng generate component page-not-found
# Add Material
ng add @angular/material
# Add PWA Support
ng add @angular/pwa
# Generate Routing File
ng generate module app-routing --module app --flat # Root
ng generate module my-module --routing # Module
ng generate module heroes/heroes --module app --flat --routing # Sub Folder
ng add @angular/material