my website at ewancroft.uk
6
fork

Configure Feed

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

feat(favicon): add redirect for /favicon.ico to /favicon/favicon.ico

+17
+17
src/routes/favicon.ico/+server.ts
··· 1 + import type { RequestHandler } from '@sveltejs/kit'; 2 + 3 + /** 4 + * Redirects /favicon.ico to /favicon/favicon.ico 5 + * 6 + * This handles browsers that request favicon.ico from the root 7 + * and redirects them to the actual location in the /favicon/ directory. 8 + */ 9 + export const GET: RequestHandler = () => { 10 + return new Response(null, { 11 + status: 301, // Permanent redirect 12 + headers: { 13 + Location: '/favicon/favicon.ico', 14 + 'Cache-Control': 'public, max-age=31536000, immutable' 15 + } 16 + }); 17 + };