You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i tried module resolution from metro bundle but with no success so far.
resolveRequest: (context,moduleName,platform)=>{if(moduleName.includes("react-native/Libraries/Components/TextInput/TextInputState")){return{filePath: path.resolve(workspaceRoot,"node_modules/react-native-web/dist/modules/TextInputState"),type: "sourceFile",}}// Optionally, chain to the standard Metro resolver.returncontext.resolveRequest(context,moduleName,platform)},
trying to export the expo web with expo-router and metro bundle and getting an error because of this package.
You do a weird import
That breaks the web export since it needs to resolve to
but somehow doesn't which makes the build fail.
This import is done in
src/helpers.ts
i tried module resolution from metro bundle but with no success so far.
probably link to #917
The text was updated successfully, but these errors were encountered: