SQL-MisterMagoo

Results 62 comments of SQL-MisterMagoo

They all sound like good features. As far as the code goes, I would probably propose that we have a JavaScript (or TypeScript) module for the actual interop - with...

🤣 I only included TypeScript as an option - I am personally just as comfortable with plain JS. I'm happy for us to have a set of issues as you...

I think - as you suggested - a set of issues listing the basic requirements for the api... I feel like we need to figure out the "how" of doing...

PR #4 introduces a loadMesh function, but it still has some stuff that is pretty specific to that particular file I think. In reality we might need some way to...

Are you sure it is being sent over the wire twice? Here is a sample from the network tab of one of mine ![image](https://user-images.githubusercontent.com/11338430/84245079-7040d900-aafc-11ea-9449-e31c81bee96e.png) You will see lots of cached...

I believe you have to serve the application over Https for full functionality of PWA.

I don't know what could be causing this - do you see any differences in the network traffic between IIS and Express?

I have reproduced the problem. For me, something was going wrong with the list of required files and some of them were erroring on fetch, which breaks the service worker...

you will need some settings in your csproj ``` XML installable-blazor true ``` `ServiceWorkerRegisterInstallableType` tells it you are using Blazor for the install prompt `ServiceWorkerForce` just lets it update the...

You can just edit the service worker to add that in. I don't have any plans to incorporate something like workbox as you could just use it on is own...