From 3bf6c5c0ec80b2af566f46ec18b033261cf155ae Mon Sep 17 00:00:00 2001 From: wonderlandpark Date: Tue, 30 Mar 2021 21:07:54 +0900 Subject: [PATCH] feat: added <3 --- pages/iu.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 pages/iu.tsx diff --git a/pages/iu.tsx b/pages/iu.tsx new file mode 100644 index 0000000..0ac0cb4 --- /dev/null +++ b/pages/iu.tsx @@ -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 \ No newline at end of file