0

Created the UNO app. Designed a page in XAML and runs in Debug mode. Published to the local folder and opens up the index.html page. Gets stuck on the splash screen with errors in the browser console. Below is the attached screenshot.

Stucks on Splash Screen with errors in console

1 Answers1

1

The Uno Bootstrapper is currently using fetch to get the wasm payload. And it seems you cannot use this method to load a file on drive.

Maybe there's a workaround (didn't try) by specifying --allow-file-access-from-file when starting your chromium-based browser (Chrome or Edge) as mentionned on this page.

Another fix would be to change the Bootstrapper to use XHR for file access as mentionned on this page: we accept PRs ;-).

Carl de Billy
  • 941
  • 6
  • 13