14 lines
384 B
TypeScript
14 lines
384 B
TypeScript
|
|
import { articleOgImage, OG_SIZE } from '@/lib/og-article';
|
||
|
|
|
||
|
|
export const runtime = 'edge';
|
||
|
|
export const alt = 'How to host a remote MCP server with OAuth (2026)';
|
||
|
|
export const size = OG_SIZE;
|
||
|
|
export const contentType = 'image/png';
|
||
|
|
|
||
|
|
export default function Image() {
|
||
|
|
return articleOgImage({
|
||
|
|
title: 'How to host a remote MCP server with OAuth (2026)',
|
||
|
|
tag: 'Guide',
|
||
|
|
});
|
||
|
|
}
|