MovixOpenSource/functions/_middleware.js
Movix 1401dc20f3 tird release
mon compte github a été détecté comme du spam je crois
2026-04-28 17:55:00 +02:00

11 lines
324 B
JavaScript

import { buildSocialPreviewResponse } from './_lib/socialPreview.js';
export async function onRequest(context) {
const pathname = new URL(context.request.url).pathname;
if (pathname.startsWith('/movie/') || pathname.startsWith('/tv/')) {
return context.next();
}
return buildSocialPreviewResponse(context);
}