1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-09-15 05:45:33 -04:00
Files
jarv.is/pages/feed.atom.ts
2022-03-09 14:07:06 -05:00

10 lines
320 B
TypeScript

import { buildFeed } from "../lib/helpers/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;