Basant

Results 12 comments of Basant

This error is still there, when I first start the application. After doing few refreshes it gets automatically resolved (just randomly). :(

@aageorge @shalomsam This is what I'm currently doing to get rid of this issue, as @angelroma's solution didn't work for me. ```tsx import { app, auth, firestore } from "../firebase/client"...

@usuarez Yes I'm totally aware of that. And I can confirm that is not the case. To solve it, I had to create a separate file, initialise all the sdk's...

Any updates on this? In my case, only RGB values are working and not HSL.

Here's what I've done to solve the issue. ```bash pnpm i -D dotenv-cli``` and then I've setup the scripts like this. ```json { "scripts": { "android": "pnpm with-env expo start...

> Here's how I solved it: > > ```js > webpack(config) { > // Configures webpack to handle SVG files with SVGR. SVGR optimizes and transforms SVG files > //...

`remapProps` doesn't work at all, have wasted so much time. 😞

> I have a case where my new app goes to (auth) >. index.tsx instead of (tabs) > index.tsx. initialRouteName doesnt work In that case, specify the initial route like...

I cloned and build the project locally with the following change. ```diff - let pkgPath = resolveJsFrom(baseDir, 'tailwindcss') + let pkgPath = resolveJsFrom(entryPoint ?? baseDir, 'tailwindcss') ``` It's working fine...