mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 02:38:27 -04:00
10 lines
311 B
TypeScript
10 lines
311 B
TypeScript
import { buildFeed } from "../lib/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;
|