0

Having issues loading HTML in presentation

We're getting this error in the Chrome remote console.

And here's the relevant js it's pointing toward. I've confirmed that this file is present on the SD card.

1 comment

  • 0
    Avatar
    Bright Scripters

    The fetch() API is intended for HTTP requests.

    In order to read a file from local storage you should try other methods.

    const data = localStorage.getItem("path/to/yourFile.json")
Please sign in to leave a comment.