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
Currently, during bundling the import.meta.main is set to true for the main module, but when that bundle is loaded, the main module might not be loaded as the main module and so the import.meta.main should be false.
The text was updated successfully, but these errors were encountered:
This appears not to be possible as long as we use the system loader for the snapshots, because use of the import keyword throws outside of a module, and there is no way to safely access it, and we have to compare the runtime import.meta.main to the bundled main module.
Currently, during bundling the
import.meta.main
is set totrue
for the main module, but when that bundle is loaded, the main module might not be loaded as the main module and so theimport.meta.main
should befalse
.The text was updated successfully, but these errors were encountered: