Understand the purpose of a Web Application Manifest file
mainA Web Application Manifest is a separate JSON file used to provide metadata about a web application. Using a dedicated file instead of HTML <meta> tags offers two primary advantages:
- Performance: It avoids loading heavy header information on every single page of an installable app/site.
- Caching: Once downloaded, the manifest file is stored in the browser's HTTP cache, making it available for subsequent use without repeated network requests.