An Azure service that provides real-time messaging for web applications using WebSockets and the publish-subscribe pattern.
Hi @Harry Willson
It seems you're experiencing issues with image rendering speed and caching inconsistencies on your Azure WebApp.
Since Azure Front Door and CDN are in use, check that caching rules are properly set, possibly with a longer TTL for better cache retention.
Confirm that lazy loading is set up correctly, so images load as they approach the viewport, which can help reduce initial load times, especially on mobile devices.
Make sure images are compressed as much as possible without losing quality, even if using WebP and lazy loading.
 Address flickering in mobile browsers (notably Chrome) by using srcset attributes to serve images in appropriate sizes for different devices.
Utilize Application Insights to track image load times and identify potential backend delays beyond CDN caching.
 If static assets are impacting performance, consider serving them via Azure Static Web Apps for optimized delivery.
Check if Azure Front Door’s connection limits are being reached, as this can affect loading times.
Implement health checks to continually monitor app performance.
- Troubleshoot Slow Web App Performance
- Scaling Azure App Service
- Using Health Check in Azure App Service
Let me know if you have any further assistances needed.