Scope
The scope parameter in a Progressive Web App (PWA) manifest file is an important feature as it defines the set of URLs that the browser considers to be within your app. When a user navigates to a URL within the scope, they are kept within the full app experience.
pwa:
    manifest:
        enabled: true
        scope: "/"Defining Scope:
- The scope can be a relative path or an absolute URL. 
- If omitted, it defaults to the location of the manifest. 
- The - start_urlmust be within the scope.
Best Practices:
- Keep the scope as restrictive as possible to maintain control over your app's user experience. 
- Set the - start_urlto a URL within the app's scope so it starts in the right context.
- Test the scope to ensure it includes all the necessary pages and excludes any that should not be part of the PWA experience. 
Was this helpful?