mirror of
https://github.com/koreanbots/core.git
synced 2025-12-15 14:10:22 +00:00
13 lines
253 B
TypeScript
13 lines
253 B
TypeScript
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
|