Remix - Performance
Why does this Remix loader not cache the response as expected?
export async function loader() {
return new Response('Data', {
headers: { 'Cache-Control': 'max-age=0, must-revalidate' }
});
}