Add PWA Features to a Project
Explore how to enhance an existing Angular project with Progressive Web App features. Learn to add and configure service workers, update the web manifest, and integrate icons to enable offline functionality and improve app performance in production.
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.
If our workspace contains more than one project, we can add the --project *my-project-name* option to ...