mirror of
https://github.com/penxio/penx.git
synced 2026-01-12 23:18:09 -05:00
8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
import { notFound, redirect } from 'next/navigation'
|
|
import { ROOT_DOMAIN } from '@penx/constants'
|
|
|
|
export function redirectTo404() {
|
|
notFound()
|
|
// redirect(`https://${ROOT_DOMAIN}/404`)
|
|
}
|