mirror of
https://github.com/Cian-H/am-d-model.eu.git
synced 2025-12-22 21:41:57 +00:00
7 lines
205 B
JavaScript
7 lines
205 B
JavaScript
export function handle({ event, resolve }) {
|
|
if (event.url.pathname.startsWith('/repo')) {
|
|
return new Response(null, { status: 205 }); // Let Caddy handle it
|
|
}
|
|
return resolve(event);
|
|
}
|