I'm loading a site through webview, but some images don't work, I went to analyze and saw that the images that don't work the attr changed from src to data-src. the problem is that on my site this is not so.
<WebView
onLoad={() => setLoading(false)}
source={{ uri: url || `${ENV.WEBVIEW_URL}${route}` }}
style={{
width,
display: loading ? 'none' : 'flex',
backgroundColor: theme.base.background,
}}
injectedJavaScriptBeforeContentLoaded={myInjectedJsBeforeContentLoaded}
onMessage={(event) =>
onMessage ? onMessage(JSON.parse(event.nativeEvent.data)) : {}
}
ref={webviewRef}
/>
