Rob Johansen
Rob Johansen
I have the same issue with React Native 0.60. What's really strange is I updated my `metro.config.js` like this to watch my sibling folder... ```js const path = require('path') /**...
I'm seeing this as well (just died in Super Metroid as a result 🙂). My specs: - 2019 MacBook Pro (16-inch) - 2.3 GHz 8-core Intel Core i9 - 64...
> We have some tests for this on Android and iOS: https://github.com/Shopify/react-native-skia/blob/main/package/src/renderer/__tests__/e2e/Box.spec.tsx#L16 It would be good to see if these work on your Android device. Thanks for your response. How...
Thanks, I'll consider these options.
@tolunaykan could you explain what you did? I tried adding my font to my `node_modules/react-native-canvas/dist/index.html` file like this... ```html @font-face { font-family: 'Work Sans'; font-weight: 500; src: local('WorkSans-Medium'), url('WorkSans-Medium.ttf') format('truetype');...
I just ran into this issue in Remix v1.9.0, but I solved it by renaming my `database.ts` file (which imports `pg` and calls top-level `pg` functions) to `database.server.ts`.
This is what worked for me in the `metro.config.js` file: ```js resetCache: true ```