You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Thu, Jun 17, 2021, 8:57 AM Noel da Costa ***@***.***> wrote:
I'm wondering why we can't just do:
<script>
import BABYLON from 'babylonjs'
</script>
instead of
onMount(async () => {
const babylonjs = await import('babylonjs');
BABYLON = babylonjs.default;
});
?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#14>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AATGFLT5CEDS55ISPLNJWCTTTHWKDANCNFSM463T2DUA>
.
But that actually reminds me, Babylon has partial server side rendering now. It can ship generated scenes from the server to the client. I will add that to the TODO.
I'm wondering why we can't just do:
instead of
?
The text was updated successfully, but these errors were encountered: