Trying to import LottieWeb within my JavaScript for an HTML webpage.
JavaScript
import lottieWeb from 'https://cdnjs.cloudflare.com/ajax/libs/bodymovin/5.7.4/lottie.min.js';
Error Displayed - "js:2 Uncaught SyntaxError: Cannot use import statement outside a module"
When I add in module type.
HTML
<script type="module" src="(myharddrivedirectory)/js/audio-player.js" type="text/javascript"></script>
Error displayed - "Access to script at 'file:/Master-Website/js/audio-player.js' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, chrome-untrusted, https."
Am I missing something within my import line?