Failed to load module script: Expected a JavaScript module script but the server responded with a MIME type of "application/octet-stream". Strict MIME type checking is enforced for module scripts per HTML spec.
解决方法是修改 nginx 的 mime.types,
application/javascript js;
改为:
application/javascript js mjs;