Blazor PWA breaks if hosted on Cloudflare Pages due to redirected index.html #33872
Labels
area-blazor
Includes: Blazor, Razor Components
feature-blazor-wasm
This issue is related to and / or impacts Blazor WebAssembly
feature-pwa
Issues related to building PWAs with Blazor
investigate
Milestone
Brief Description
An attempt to host a Blazor PWA on Cloudflare Pages results in broken service-worker: the website won't load after the first visit, installed PWA will display an error on start. The root of the problem seems to be the redirect of
index.html
. The problem may not be specific only to Cloudflare Pages, but to any host that redirects requests to the index page.Example
Cause of the problem

The root of the problem seems to be the
index.html
redirect that happens when the service-worker attempts to fetch static resources for offline mode during its initialization phase:As a result
index.html
response gets saved in CacheStorage withredirected=true
.When a user attempts to visit the website for the second time, the service-worker's
onFetch
returns cached redirected response ofindex.hmtl
. This causes error because of the security policy of modern browsers:Solution
As a workaround the code that removes the
redirected
flag from cached responses may be added to the service worker:Although I'm not sure it's 100% correct approach to do that, it seems to be working: https://fix.cloudflarebreaksblazorpwa.pages.dev/
Maybe something like this should be included in the Blazor PWA project template for .NET 6 to make it more robust and suitable for hosting on Cloudflare Pages out of the box.
The text was updated successfully, but these errors were encountered: