mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-19 11:55:30 -04:00
5a1636baa3
- Replace Biome with oxlint + oxfmt (OXC toolchain) for linting and formatting - Add .oxlintrc.json and .oxfmtrc.json configuration files - Update VS Code settings and devcontainer to use oxc-vscode extension - Remove contact form, Resend email integration, and related server action/schema - Remove unused UI components (accordion, alert, card, tabs, toggle, etc.)
14 lines
294 B
TypeScript
14 lines
294 B
TypeScript
import { NextResponse } from "next/server";
|
|
|
|
import { buildFeed } from "@/lib/build-feed";
|
|
|
|
export const GET = async () => {
|
|
const feed = await buildFeed();
|
|
|
|
return new NextResponse(feed.atom1(), {
|
|
headers: {
|
|
"content-type": "application/atom+xml; charset=utf-8",
|
|
},
|
|
});
|
|
};
|