Are there any simple ways to patch React to autoprefix styles, such that the rendered HTML doesn't differ on the client and server?
For example, is it possible to get
<div style={{display: 'flex'}}/>
to render to (ignoring data-reactid
):
<div style="display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;"/>