dynamic import()
Three things at once, all of which used to fail:
- the specifier is computed, so the static scan that prefetches the
module graph cannot see it;
- the module it names has a static import of its own, which must be fetched
before the import can resolve;
- the same chunk is imported twice, and must be instantiated once.
running...