import { error } from '@sveltejs/kit'; import type { RequestHandler } from './$types'; // Catch-all route for /uploads/* - return 404 for missing uploads // This handles external Nostr content that references non-existent uploads export const GET: RequestHandler = async () => { throw error(404, 'File not found'); };