14 lines
406 B
TypeScript
14 lines
406 B
TypeScript
|
|
import { articleOgImage, OG_SIZE } from '@/lib/og-article';
|
||
|
|
|
||
|
|
export const runtime = 'edge';
|
||
|
|
export const alt = 'Connect a custom MCP server to Claude Desktop (step by step)';
|
||
|
|
export const size = OG_SIZE;
|
||
|
|
export const contentType = 'image/png';
|
||
|
|
|
||
|
|
export default function Image() {
|
||
|
|
return articleOgImage({
|
||
|
|
title: 'Connect a custom MCP server to Claude Desktop (step by step)',
|
||
|
|
tag: 'Setup',
|
||
|
|
});
|
||
|
|
}
|