Adam Lane

Results 7 comments of Adam Lane

Thanks @steverecio, this solution saved the day! This is what I ended up with to get noopener and punycode going: ``` import punycode from "punycode"; ... const componentDecorator = (href,...

I believe the manual workaround is ``` import punycode from "punycode"; ... const componentDecorator = (href, text, key) => ( {punycode.toASCII(text)} ); ... ... ```

I just tried a few things and I seem to get autoprefixing: Before ``` h1 { display: grid; transition: all .5s; user-select: none; background: linear-gradient(to bottom, white, black); } ```...

I am messing around with linaria and my css isn't reloading on changes. Looking around for potential solutions I saw this but am getting some warnings: ``` (node:28964) DeprecationWarning: Tapable.apply...

@sheerun For me when I just run the current with-next example here without any changes (other than adding cross-env to build) I get the problem trying to build: ``` C:\...\extracted-loader\examples\with-next>npm...

I just hit the problem of video not playing on Safari: https://philna.sh/blog/2018/10/23/service-workers-beware-safaris-range-request/ I see this fix referenced above... ``` workbox.routing.registerRoute( /.mp4$/, workbox.strategies.cacheFirst({ plugins: [ new workbox.rangeRequests.Plugin() ] }), 'GET' );...

Our app just suffered a nasty bug traced to a point where developer tried a nested fragment and commented it out because it doesn't work and the hard coded attributes...