14 lines
399 B
TypeScript
14 lines
399 B
TypeScript
|
|
import { articleOgImage, OG_SIZE } from '@/lib/og-article';
|
||
|
|
|
||
|
|
export const runtime = 'edge';
|
||
|
|
export const alt = 'OAuth 2.1 for MCP servers: PKCE, DCR and RFC 8707 in plain English';
|
||
|
|
export const size = OG_SIZE;
|
||
|
|
export const contentType = 'image/png';
|
||
|
|
|
||
|
|
export default function Image() {
|
||
|
|
return articleOgImage({
|
||
|
|
title: 'OAuth 2.1 for MCP servers, in plain English',
|
||
|
|
tag: 'Explainer',
|
||
|
|
});
|
||
|
|
}
|