14 questions
0 votes
0 answers
39 views
Is it possible to enable PWA functionalities for a single page in Blazor interactive rendering WebApp (.NET 8)
It seems I am victim of confusion connected to Blazor, its rendering modes and PWA possibilities with Blazor web assembly. A Blazor Progressive Web Application (PWA) is a single-page app (SPA) that ...
1 vote
1 answer
46 views
Blazor Wasm fails to register as shared content target
I created a new Blazor WebAssembly Standalone App and added next code to the manifest so it gets registered as a shared content target for csv files: "share_target": { "action": &...
0 votes
0 answers
51 views
How to navigate into an already downloaded WASM application?
Let's say you are using the Hosted Web App template for Blazor. The user navigates to your application and the server pre-renders the page, and then the WASM is loaded and takes over as expected. The ...
0 votes
0 answers
119 views
Blazor PWA opens all links in inapp browser
If I publish this Blazor PWA (without any changes) and publish it to my Azure App Service, and then add it to the homescreen all links in the app opens in the "app": https://github.com/...
1 vote
1 answer
133 views
Blazor wasm pwa - on opening after being inactive for some time
I have build a blazor wasm app with pwa support. Is it possible to trigger some code when it is reopened after being inactive? I would like to fetch the most recent information from the server without ...
0 votes
0 answers
221 views
Hosting Blazor WebAssembly Progressive Web App in virtual directory under the Subdomain
I have two virtual directories under a subdomain: one hosts a Blazor WebAssembly Progressive Web App, while the other hosts an ASP.NET Core application. The Blazor WebAssembly PWA is not running as ...
3 votes
1 answer
854 views
How can you check if you are online in a Progressive Web Application
I am developing a Progressive Web Application and I am trying to make sure that end users can access and edit their information locally while offline and then sync it with the database once coming ...
1 vote
1 answer
752 views
BlazorWASM wwwroot has no index.html, works in dev still? Published version just shows files
I am trying to figure out how to get the published BlazorWASM app to show the actual client on the ip. Right now it just shows all the files and everywhere I look it says modify index.html. I come ...
0 votes
3 answers
217 views
New in Blazor with some rookie questions
I'm new in Blazor, and i want to create a PWA to work (almost) full offline. The user must Authenticate (Microsoft.AspNetCore.Authentication). Then i need to get some data from SQL Server and store it ...
2 votes
1 answer
376 views
How to Deploy Blazor PWA App With Rest API (In Virtual Directory) on IIS
step 1 - i have a simple blazor pwa app which we hosting in sub domain. Step 2 - Created new virtual directory Step 3 - Uploaded APIERP within that virtaul drectory As blazor is SPA it stops accesss ...
3 votes
2 answers
728 views
Is there an easier way to determine that a Blazor App (PWA) has an update available? [closed]
When I look for examples for determining that a Blazor App (PWA) has an update available I find many lengthy examples focusing on service-worker.js rewrites. Is there a easier way? Or a way that ...
1 vote
0 answers
1k views
Posting a model with image file from a PWA WebAssembly to an ASP.NET Core Web Api (Net 6)
I'm trying to post a model with an image file and other data from my PWA to my ASP.NET Core Web Api. I succeed with the Api and Postman, but I can't get it working from the PWA. Furthermore, the model ...
3 votes
1 answer
1k views
Blazor WASM(Hosted) with PWA : How to change the current service worker code to use Network First Strategy?
The Current code looks like does Cache first Strategy, How to modify it use Network first and than fallback to cache if network fails ? async function onFetch(event) { let cachedResponse = null; ...
5 votes
4 answers
7k views
Blazor WASM PWA Cannot Change Icon, Cannot Change Name
I'm struggling with a case where I've done good research on how to it. It works for everyone but not for me!! Environment: Microsoft Windows 10 Pro Visual Studio Community Edition 2019 So I've ...