Created by: Timer
Continuation of #4799 by @kopacki.
This updates svgr
and disables Prettier / SVGO.
Prettier is disabled because it just increases compile-time latency, there's no true benefit here.
SVGO is disabled because there's no "safe defaults" that keep it useful IMO, and we don't apply optimizations to SVGs imported as URLs. Different optimization behavior based on how the SVG is imported would be confusing/unexpected to the user, especially during debugging.
If we go down the SVGO path, we'll probably only do it for Production and for both ReactComponents and URLs.
This PR will be a great first step.