Good day
I am working on a new blazor app, .NET 8 RC 1 and while the app seems to work locally as I am debugging and making changes, this error pops up in the developer tools (browser) console:
What is it, and how do I fix this?
GET https://localhost:7169/_framework/dotnet.js net::ERR_ABORTED 404 (Not Found)
Uncaught (in promise) TypeError: Failed to fetch dynamically imported module: https://localhost:7169/_framework/dotnet.js

This occurs because the client (browser) has not been able to download the Javascript module dotnet.js, this library is used to create and start the .NET WebAssembly runtime. As you know, in a Blazor.Net 8 project it is possible through the @attribute to choose different operating modes for your page/component, examples: [RenderModeWebAssembly], [RenderModeAuto], [RenderModeServer] for example if you use the latter this library will not be necessary since Blazor the Framework uses this library blazor.web.js