Загрузчик stl javascript показывает исключение Uncaught DOMException: не удалось создать "Рабочий": невозможно получить доступ из источника "http://127.0.0.1"
Я пытаюсь загрузить 3D-файл.stl через js, используя https://www.viewstl.com/plugin/docs_new.php. мой код похож на
<script src="js/stl_viewer.min.js"></script>
<div id="stl_cont"></div>
<script>
var stl_viewer=new StlViewer(document.getElementById("stl_cont"), { models: [ {id:0, filename:"glasses.stl"} ] });
</script>
Из примера, приведенного на веб-сайте, он работает нормально, но когда я пробую это в своей системе, тот же код показывает эту ошибку
Uncaught DOMException: Failed to construct 'Worker': Script at 'https://www.viewstl.com/plugin/examples/load_stl.min.js' cannot be accessed from origin 'http://127.0.0.1'.
at StlViewer.load_from_stl_file (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:4033)
at StlViewer.load_model (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:3540)
at StlViewer.add_model (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:16465)
at https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:16852
at Array.forEach (<anonymous>)
at StlViewer.add_models (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:16830)
at StlViewer.init (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:30966)
at ScriptsLoader.StlViewer.external_files_loaded [as all_loaded_callback] (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:33611)
at ScriptsLoader.load_files (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:35348)
at HTMLScriptElement.t.onload (https://www.viewstl.com/plugin/examples/stl_viewer.min.js:2:35261)
Как я могу решить эту проблему