Aseem Gupta

Results 21 comments of Aseem Gupta

v`4.6.0`. **Works in** chrome and firefox. But broken in safari. Strangely, can't even open the image files in Mac's inbuilt image Preview. Below works. Removing config for `webp`. https://github.com/tcoopman/image-webpack-loader/issues/111#issuecomment-443160129 https://github.com/tcoopman/image-webpack-loader/issues/111#issuecomment-423526387...

Thanks @burczu I am eager to know its working with isomorphic react app. **On a side note:** Also, I liked your article at http://frontendinsights.com/role-based-authorization-using-react-router/ Conceptually is good. As a feedback,...

Thanks @frenzzy What if I don't use this loader for client side? Then I would have to add a flag right? , like ``` if (__SERVER__) {....} ``` Also, tried...

> Of course you can use css on server side only, how you will do it it is up to you. Thanks for examples.. Looks like insertCss will be automatically...

@frenzzy In the article for critical rendering css, it suggested to inline only the critical css and not the entire css. How to ensure this using `isomorphic-style-loader`? It appears that,...

Hi @malbernaz Thanks for the pointers... I tried from your repo(only for server part though with your `WithStyles.js`). My component looks like this... ``` import Inferno from 'inferno'; import {...

@frenzzy @malbernaz So, I'm now able to get my CSS inserted in `` in index.html at server but issue is, I don't want to do use it for client side.....

@malbernaz I'm not providing any context at client side. And only context, I'm providing at server side is `InserCss` only bcoz I am using this loader, otherwise no context.. I'm...

Hi @frenzzy @malbernaz I noticed one thing that.. I'm using this `iso style loader` on server and `style loader` in client side. **Couple of serious issues, I encountered:** 1) If...

Hey @TotallWAR I was able to make it work. Only issue was the duplicate styles. One which was getting inserted on the server side and the other which was happening...