Remix - Deployment
Given this Remix loader code running on an edge deployment target:
What is a likely architectural consideration for this deployment?
export async function loader() {
const data = await fetch('https://api.example.com/data');
return data.json();
}What is a likely architectural consideration for this deployment?
