I have never hosted a ThreeJS project before. I read the documentation, but it merely says to host the files. No detail beyond this was provided.
When building and testing, I was using the following code:
<script async src="https://unpkg.com/es-module-shims@1.6.3/dist/es-module-shims.js"></script>
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.154.0/build/three.module.js",
"three/addons/": "https://unpkg.com/three@0.154.0/examples/jsm/"
}
}
</script>
</head>
<body>
<script type="module" src="main.js"></script>
</body>
Are es-module-shims.js
version 1.6.3 and three.module.js
version 0.154.0 up-to-date or are newer versions available?
Are there any security concerns that I should be aware of?
Is there anything else I should know?
Anyways, thanks in advance!