seqmachines's picture
Deploy Seqcolyte Studio
8ffc9f7 verified
Raw
History Blame Contribute Delete
331 Bytes
import { NextResponse } from "next/server";
import { listTechnologies } from "@/lib/technologies";
export const runtime = "nodejs";
export const dynamic = "force-dynamic";
/** The technology-wiki gallery index (lightweight card summaries). */
export async function GET() {
return NextResponse.json(await listTechnologies());
}