Not all API calls are equal. Your ‘User Profile’ is more important than ‘Related Products’.
fetch('/api/user', { priority: 'high' });
fetch('/api/ads', { priority: 'low' });
The Logic: This tells the browser which network requests to put at the front of the queue, improving the ‘Perceived Performance’ of your app.
