data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: never cache anything

+2 -1
+2 -1
src/routes/+layout.ts
··· 3 3 export const prerender = false; 4 4 export const trailingSlash = 'always'; 5 5 6 - export async function load({ url }) { 6 + export async function load({ url, setHeaders }) { 7 + setHeaders({'Cache-Control': 'no-cache'}) 7 8 return { route: url.pathname } 8 9 }