1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-27 18:50:29 -04:00
jarv.is/pages/feed.xml.ts

10 lines
319 B
TypeScript

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