Evan Bacon

Results 214 comments of Evan Bacon

https://github.com/expo/expo/pull/18422 The feature is already enabled by default in Expo Router.

Decided to move forward with using Metro instead of Webpack, I'll no longer be adding new features to Webpack. Fast Refresh is already in Expo CLI's Metro for web, and...

react-dev-utils is no longer used as of #3763

@sbhrule15 I'll be dropping the experimental native support in Webpack because I've been running into a lot of issues (mostly memory related) which I can't seem to track down. Webpack...

@oliviercperrier you can use `http://localhost:*` with Chrome and crypto will be available. The secure origin issue happens when you load with a lan URL.

This is a pretty complicated config plugin and the current state won't work in monorepos, so I recommend adding unit tests and an example app.

Yes, the Metro config isn't very good at plugins and mostly just offers an API for forking different aspects of the bundling pipeline, i.e. changing the transformer rather than appending...

Looks like they removed support for redirecting to native apps. You will need to setup a proxy website as @ParadauxIO suggested. Here's a screenshot from the app I built when...

Here's an example of using Expo Router's API Routes (still in beta) to proxy Twitch authentication. Tested on iOS simulator Expo Go, iOS dev client (simulator), and web. https://github.com/EvanBacon/expo-router-auth-proxy-example

The issue is that we need to add a webpack alias for `react-native-vector-icons` to `@expo/vector-icons` since we no longer do this in babel. Ref https://github.com/expo/expo/blob/5a4eb4988cc8fa17f0d5aad32f3785f04131aa0b/packages/%40expo/cli/src/start/server/metro/withMetroMultiPlatform.ts#L152 Perhaps something like this in...