Matthew Dapena-Tretter
Matthew Dapena-Tretter
Awesome! lmk đź’ś
@andreypopp Updated to use ReactAsync for rendering—that was easier than I expected! Async rendering on the server side with the middleware is working!!!
The constructor without arguments is supported but [neither the iterable in constructor nor `TypedArray.from()` are](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray).
Did you try logging the error?
I'm not sure if the `loadjsif` tag is actually worth it. The `Modernizr.load` version seems shorter and more readable. It does have the benefit of decoupling the template from the...
The "specifying a default" approach is the one I took with [react-mediaswitch](https://github.com/matthewwithanm/react-mediaswitch). The UA stuff is separate IMO, though it could be used to decide which media case is the...
Yeah, that was the big caveat I gave @Cspeisman when I put this together. I don't think it's quite as simple as passing to html-loader, but I forget why I...
Arg yeah. If it's not working like in the browser, it sounds like a bug upstream. /:
monorouter was built with server-side rendering in mind, so the behavior for those browsers (with the default history implementation) is to just fall back to standard browser behavior. It should...
Specificity is a way of prioritizing rulesets that apply to the same element (mostly based on the selector)—for example "#blah" had a greater specificity than ".blah". With inline styles, there's...