Rubens Armôa Lopes
Rubens Armôa Lopes
I agreed with @KaiVolland, at the company where I work at we have multiples remotes so we avoid use `origin` as remote name as it does not make it very...
I've tried on Mint 20.04 and on Windows 10. (not sure about the build number) Got it working on a Ubuntu 20.04 ISO installing adb/fastboot from scratch.
Actually we came to a work around, not a pretty one, but it's working for us. ```javascript const BASE_URL = `${CORE_URL}_api/router.php?action=`; const urls = { MOVIES: `${BASE_URL}movies`, . . ....
Here we use a external library, `lodash.orderBy`. https://lodash.com/docs/4.17.15#orderBy
Hi everyone, We have a similar need, maybe a bit more complex. In our case our svg lib outputs the following for each icon:  It is exported that way...
My humble opinion: I don't see everybody that uses `tailwind-styled-components` with a mandatory need of `tailwind-merge`, so if it is a special case it should be add as dependency when...
I'm having the same problem with `data:image`, my work around seems like this: ```javascript routes () { ... this.passthrough(); this.passthrough(request => request.url.startsWith('data:image')); } ```
The first `passthrough()` is there because it's an ongoing project that we are implementing miragejs at the moment.