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