Jakub Romańczyk

Results 239 comments of Jakub Romańczyk

Hi @npcv1999 `babel-swc-loader` utilizes both babel & swc and should have the most compatible output, could you please show your `babel.config.js` if it contains any additional stuff that might be...

Hey folks! Support `react-native-web` or `web` target in general mostly boils down to refactoring existing Re.Pack plugin and bundling logic so that it accounts for `web` as a target. Many...

> Version 19.1.0 of react should fix this issue. There is a commit on react enabling non-dev elements in dev Children > > @gopbarbosa can you check whether React 19.1.0...

Hi @sahajarora1286, could you please create a reproduction repository with this issue? It really saves a lot of time and allows us to handle issues more swiftly instead of trying...

hi @dothanhtam99, I'm not able to deduce anything from the inf you've provided. Please provide a reproduction repository so that we can get to the bottom of this. I'm guessing...

@dothanhtam99 you shoud use `resolveURL` for your `main` chunk in in release as well, please change ```ts let url; if (caller === 'main') { url = Script.getDevServerURL(scriptId); } else {...

showcase supports only rspack atm - we've removed webpack setup to make it simpler - previously we had both rspack and webpack and that might have been confusing to some...

webpack is still supported - you need to create `webpack.config.js` files everywhere and do similar configuration as in `rspack.config.js` files and also change commands in `react-native.config.js` from `/rspack` to `/webpack`

@nthtrung09it here's the diff that should work for you: ```diff diff --git a/packages/host/webpack.config.mjs b/packages/host/webpack.config.mjs index bbbd1a9..759a530 100644 --- a/packages/host/webpack.config.mjs +++ b/packages/host/webpack.config.mjs @@ -1,9 +1,13 @@ +import {createRequire} from 'module'; import...