feat: added <3

This commit is contained in:
wonderlandpark 2021-03-30 21:07:54 +09:00
parent 496f53a0f9
commit 3bf6c5c0ec

12
pages/iu.tsx Normal file
View File

@ -0,0 +1,12 @@
import { GetServerSideProps } from 'next'
import NotFound from './404'
export const getServerSideProps: GetServerSideProps = async ctx => {
ctx.res.statusCode = 516
ctx.res.setHeader('IU', '<3')
return {
props: {}
}
}
export default NotFound