dynamic import()

Three things at once, all of which used to fail:

  1. the specifier is computed, so the static scan that prefetches the module graph cannot see it;
  2. the module it names has a static import of its own, which must be fetched before the import can resolve;
  3. the same chunk is imported twice, and must be instantiated once.
running...