Felix Mokross

Results 9 comments of Felix Mokross

We are experiencing the same issue. Falling back to FAST_REFRESH=false however is also not working for us. If I add the ModuleFederationPlugin, the page no longer reloads upon changes (although...

I digged a bit deeper now. It's still not clear to me where the problem is exactly. I see that messages are exchanged via the websocket and I see that...

For us, it turned out to be this issue in the React Refresh webpack plugin, which comes with CRA: https://github.com/pmmmwh/react-refresh-webpack-plugin/issues/394 I don't see this plugin in the repro steps of...

We also have this issue. Workaround for us is to opt-into Module Federation when starting the dev server (via a command line arg), so that most developers are not impacted...

I also have issues getting Tailwind CSS to work with a vite-based Storybook. In my case, it is a new Remix app with its built-in Tailwind CSS support. I did...

Ok, for Remix, I figured it out: while Remix automatically knows how to use Tailwind CSS, PostCSS needs to be configured for Storybook so that it knows that we want...

We ran into this bug in our own web component library based on Stencil.js. @alicewriteswrongs could you elaborate on what you mean using the `key` attribute? Can this be used...

I worked around this bug now using a `querySelector` call as you did initially as well. Using a `key` seemed to introduce too much complexity in our case. ```tsx @Element()...

Alright, that's good to know :-) I am familiar with the `key` attribute from React, seems to be similar in Stencil. I just wasn't sure about the part how it...