Home > @uniformdev/context-edge-cloudflare > createCloudflareProxyEdgeHandler
createCloudflareProxyEdgeHandler() function
Signature:
createCloudflareProxyEdgeHandler: () => ({ request, context, originUrl, missingQuirkValue, quirks, }: {
request: Request;
context: Context;
originUrl: string;
missingQuirkValue?: string;
quirks?: (keyof IncomingRequestCfProperties)[];
}) => Promise<{
processed: boolean;
response: Response;
}>
Returns:
({ request, context, originUrl, missingQuirkValue, quirks, }: { request: Request; context: Context; originUrl: string; missingQuirkValue?: string; quirks?: (keyof IncomingRequestCfProperties)[]; }) => Promise<{ processed: boolean; response: Response; }>