Add PWA Features to a Project
Angular allows you to inject PWA features with just a command. All the needed parts are downloaded and configured for you, immediately providing a ready-to-use PWA.
Adding PWA features
This lesson builds upon the previous lesson, where we created a basic Angular project and installed all the needed tools and libraries for a PWA. You can use your existing Angular project asa starting point for the next steps.
ng add schematics
Within the scope of our project, let’s run the following command in a terminal/command window.
Press + to interact
ng add @angular/pwa
If our workspace contains more than one project, we can add the --project *my-project-name*
option to ...