/home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wp-rocket/inc/ThirdParty/Plugins/PWA.php (672B)
'exclude_service_worker',
];
}
/**
* Excludes the PWA service worker URL
*
* @param array $excluded Array of excluded URLs.
*
* @return array
*/
public function exclude_service_worker( $excluded ): array {
if ( ! function_exists( 'wp_get_service_worker_url' ) ) {
return $excluded;
}
$excluded[] = '/wp.serviceworker/?';
return $excluded;
}
}