0👍
✅
Problem solved. It was PEBCAK.
I guess I was using outdated syntax. I changed:
module.exports.FBApp = fbApp.database().ref()
to:
const FBApp = fbApp.database().ref()
export default FBApp
It then worked.
Source:stackexchange.com