mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-20 20:41:16 -04:00
refactor .js files to ES modules where possible
This commit is contained in:
@@ -2,7 +2,7 @@ import { buildFeed } from "../lib/helpers/build-feed";
|
||||
import type { GetServerSideFeedProps } from "../lib/helpers/build-feed";
|
||||
|
||||
export const getServerSideProps: GetServerSideFeedProps = async (context) => {
|
||||
return buildFeed(context, "atom");
|
||||
return buildFeed(context, { format: "atom" });
|
||||
};
|
||||
|
||||
// eslint-disable-next-line import/no-anonymous-default-export
|
||||
|
Reference in New Issue
Block a user