we now have a much more standard package that doesn't require special support
fixes issues I was having importing this package with webpack 4 - which should create more optimizations than we can expect from this
If we want this benefit again, we should do something like a dependency injection, where something else can wrap the component in react loadable (or whatever it wants) to pass it in to the component that uses it.
Looks like this is already built into Editor.js where you can remove MathNodeView from the default views, and add an async component in its place.
This accomplishes two things -
If we want this benefit again, we should do something like a dependency injection, where something else can wrap the component in react loadable (or whatever it wants) to pass it in to the component that uses it.
Looks like this is already built into
Editor.js
where you can removeMathNodeView
from the default views, and add an async component in its place.