79658419

Date: 2025-06-09 06:21:31
Score: 1
Natty:
Report link

I also got the same error when i upgraded to expo 53, before it was working fine. You can work around the incompatibilities by disabling package.json:exports in your Metro config.

// metro.config.js
const { getDefaultConfig } = require('expo/metro-config');

/** @type {import('expo/metro-config').MetroConfig} */
const config = getDefaultConfig(__dirname);

config.resolver.unstable_enablePackageExports = false;

module.exports = config;
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Arsh