Files
jarv.is/pages/feed.atom.ts
T
2022-02-11 11:10:05 -05:00

10 lines
312 B
TypeScript

import { buildFeed } from "../lib/build-feed";
import type { GetServerSideProps } from "next";
export const getServerSideProps: GetServerSideProps = async (context) => {
return buildFeed(context, { type: "atom" });
};
// eslint-disable-next-line import/no-anonymous-default-export
export default () => null;