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
#80 moved over to use es6 imports but the STL and Collada loader will always be included in a build because they are included at the top of the file. The right way to handle this is to use the dynamic import() function.
This will implies code splitting for builds and adds complications for converting to a umd format because the imported file is external.
Rollup supports the --experimentalDynamicImport flag so that may be worth investigating.
The text was updated successfully, but these errors were encountered:
#80 moved over to use es6 imports but the STL and Collada loader will always be included in a build because they are included at the top of the file. The right way to handle this is to use the dynamic import() function.
This will implies code splitting for builds and adds complications for converting to a umd format because the imported file is external.
Rollup supports the
--experimentalDynamicImport
flag so that may be worth investigating.The text was updated successfully, but these errors were encountered: