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