my website at ewancroft.uk
6
fork

Configure Feed

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

fix: exclude /webhook from CDN cache headers

+1 -1
+1 -1
src/hooks.server.ts
··· 39 39 40 40 // Add HTTP caching headers for better performance and reduced timeouts 41 41 // Layout data (root route) is cached aggressively since profile/site info changes infrequently 42 - if (!event.url.pathname.startsWith('/api/')) { 42 + if (!event.url.pathname.startsWith('/api/') && event.url.pathname !== '/webhook') { 43 43 // Root layout loads profile and site info - cache aggressively 44 44 if (event.url.pathname === '/' || event.url.pathname === '') { 45 45 response.headers.set('Cache-Control', HTTP_CACHE_HEADERS.LAYOUT);