1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-07-03 18:26:38 -04:00

dynamic site.webmanifest

This commit is contained in:
2022-01-03 11:42:03 -05:00
parent 36e3cfa18e
commit 55d9207753
9 changed files with 72 additions and 60 deletions

View File

@ -1,7 +1,7 @@
import { buildFeed } from "../lib/build-feed";
import type { GetServerSideProps } from "next";
const AtomPage = () => null;
const AtomFeed = () => null;
export const getServerSideProps: GetServerSideProps = async (context) => {
const feed = buildFeed();
@ -16,4 +16,4 @@ export const getServerSideProps: GetServerSideProps = async (context) => {
};
};
export default AtomPage;
export default AtomFeed;