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