Remix - Performance
Given this Remix loader code:
What happens when a user requests this loader after 15 seconds from the first request?
export async function loader() {
return new Response('Hello', {
headers: { 'Cache-Control': 'max-age=10, stale-while-revalidate=30' }
});
}What happens when a user requests this loader after 15 seconds from the first request?
