Jeremy Stucki

Results 43 comments of Jeremy Stucki

@bparticle looks like you have another loader hijacking your image (probably `url-loader`?) …

Not sure if it's possible/necessary to chain loaders for this. How about something like ```js { loader: 'responsive-loader', options: { adapter: require('responsive-loader/sharp'), operations: [["rotate", 90], "extract"] } } // Or...

See https://github.com/herrstucki/responsive-loader/issues/70#issuecomment-444900842

I'm seeing a similar error. 1. I create a new blog post in a different locale (e.g. `es`) than the default (`en`) and save. 2. When I click the edit...

I _may_ have found the cause of this bug: In some cases (like the one described above), the slug doesn't get set in the translation table. This only appears to...

At the moment, it's not possible to set this globally.

Hi! You can set the `sourceText` prop on `ReactSpecimen` to control what’s displayed as source. Or use the [`catalog/babel`](http://docs.catalog.style/guides/webpack-babel#babel-preset) Babel preset which does that automatically for you.

Which browser are you using? This should work fine.

Can you elaborate on the scenario where this doesn't work? Maybe provide a minimal reproducible setup? Note that this probably only is the case during development (i.e. when using `catalog...

@Stan-Che Thanks a lot, this looks very promising! Monkey-patching `insertRule` is quite ingenious 😁 I'd like to test-drive this in the next couple of days, so I'll be able to...