Unable to load .obj file using require

had the same issue, creating a metro.config.js file with your assetExts fix the problem

module.exports = {
  resolver: {
    assetExts: ["db", "mp3", "ttf"]
  }
}
5 Likes