In the SSR compiler, dynamic import()s should (probably) be no-ops because we run in sync mode so you wouldn't be able to do anything with the constructor you import anyway.
We also need to strip these import()s anyway because core will complain if it sees them after compilation.
In the SSR compiler, dynamic
import()
s should (probably) be no-ops because we run in sync mode so you wouldn't be able to do anything with the constructor you import anyway.We also need to strip these
import()s
anyway because core will complain if it sees them after compilation.