Remix - Performance
Why does this Remix route cause slower performance?
export async function loader() {
const data = await fetch('https://slow.api/data').then(res => res.json());
return json(data);
}
Options:
A) The external API is slow
B) The loader function is not async
C) The json() helper is missing
D) The fetch URL is incorrect
