So, bubble’s javascript code runs a setTimeout that runs every 25ms, blocking loading of text and data on the page. It takes 4 seconds for a super simple page to load with the custom font I’m using.
Has anyone fixed this in their bubble app? In early.js, it’s repeatedly running this code:
function ma(a) {
setTimeout(n(function() {
ka(this)
}, a), 25)
}
Would love to get some insight!