mirror of
https://github.com/movixcorp/MovixOpenSource.git
synced 2026-07-27 09:12:07 +00:00
11 lines
324 B
JavaScript
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);
|
|
}
|