Home > Software design >  Existing Angular Project into PWA
Existing Angular Project into PWA

Time:08-02

Which commands am I to run in my command line to modify my angular project into a pwa just like react-pwa

CodePudding user response:

You can use the angular suggested command:

ng add @angular/pwa --project <project-name>

This is the official guide: https://angular.io/guide/service-worker-getting-started

  • Related