···11/**
22 * OG (Open Graph) image paths
33- *
33+ *
44 * These images are served from the ./static/og/ directory.
55 * They are accessible at /og/ URLs in the application.
66- *
66+ *
77 * To add new OG images:
88 * 1. Place the image in ./static/og/
99 * 2. Add the path here as /og/filename.png
1010 */
1111export const ogImages: Record<string, string> = {
1212- main: '/og/main.png',
1313- siteMeta: '/og/site-meta.png'
1212+ main: '/og/main.png',
1313+ siteMeta: '/og/site-meta.png'
1414};
···2233/**
44 * Redirects /favicon.ico to /favicon/favicon.ico
55- *
55+ *
66 * This handles browsers that request favicon.ico from the root
77 * and redirects them to the actual location in the /favicon/ directory.
88 */
···1414 'Cache-Control': 'public, max-age=31536000, immutable'
1515 }
1616 });
1717-};1717+};