mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-26 17:48:30 -04:00
9 lines
289 B
TypeScript
9 lines
289 B
TypeScript
import { buildFeed, GetServerSideFeedProps } from "../lib/helpers/build-feed";
|
|
|
|
export const getServerSideProps: GetServerSideFeedProps = async (context) => {
|
|
return buildFeed(context, "rss");
|
|
};
|
|
|
|
// eslint-disable-next-line import/no-anonymous-default-export
|
|
export default () => null;
|