Raphaël Badia

Results 18 comments of Raphaël Badia

> That is an error on the doc, which I have removed. Unfortunately this is intended, providing options as part of nextConnect() is a bit misleading since calling .run() does...

I just stumbled across the same issue :(

Hello, where does the `webpackConfig` variable comes from in your example ? My config currently looks like this : ```javascript component: { downloadsFolder: '/tmp/cypress/downloads', // the default download folder triggers...

ok thanks, for nextjs we don't have access to the webpack config so I guess I'll wait for this issue to be handled ! ☺️

@Oussama-El-Benney you need to use patch-package with a postinstall script, so the changes are applied every time you (or vercel) does a postinstall

> > Hi, I tried to change it like this, but it didn't take effect > > try [npmjs.com/package/html2canvas-pro](https://www.npmjs.com/package/html2canvas-pro), this supports object-fit Hum, I see that the commit history has...

Hello, a possible workaround is to add `h-auto` to the parent div and a bit of padding in the children if necessary before: ```html ....... ``` after: ```html ....... ```

Sorry for not answering, I moved on different project, so I'll close this 🙏

I think that the main challenge would be to be able to detect if the component is a server component or a client one. Then the second problem would be...

I don't know much about babel / swc, but couldn't these plugins read the file, see if it contains the string `"use client"`, and automatically choose between `TransNoContext` and `Trans`?...