79772474

Date: 2025-09-23 10:35:05
Score: 0.5
Natty:
Report link

I found the issue, i setup fonts and created a `react-native.config.js` file, after backtracking my changes and removing this file, it fixed the issue. Further debugging the issue; there was an additional empty object in this file that was causing this issue:

Previous Version:

module.exports = {
    project: {
        ios: {},
        android: {},
    },
    assets: ['./app/assets/fonts/'],
};

Updated Version:

module.exports = {
    assets: ['./app/assets/fonts/'],
};

This fixed the issue.

Reasons:
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: Shoaib Arif