Sha256: 615f4c169bab036e25aa2ddefe77c7420a7489c7a95a0e0064471560d9efa7c9
Contents?: true
Size: 694 Bytes
Versions: 26
Compression:
Stored size: 694 Bytes
Contents
import { devUtils } from '~/core/utils/internal/devUtils' import { StartOptions } from '../../glossary' export function validateWorkerScope( registration: ServiceWorkerRegistration, options?: StartOptions, ): void { if (!options?.quiet && !location.href.startsWith(registration.scope)) { devUtils.warn( `\ Cannot intercept requests on this page because it's outside of the worker's scope ("${registration.scope}"). If you wish to mock API requests on this page, you must resolve this scope issue. - (Recommended) Register the worker at the root level ("/") of your application. - Set the "Service-Worker-Allowed" response header to allow out-of-scope workers.\ `, ) } }
Version data entries
26 entries across 26 versions & 1 rubygems