TanStackT
TanStack21h ago
1 reply
near-white

404 notFound funtion not returning 404 status code

import { NotFoundPage } from '@/pages/not-found'
import { createFileRoute, notFound } from '@tanstack/react-router'

export const Route = createFileRoute('/$')({
  loader() {
    throw notFound()
  },
  notFoundComponent: NotFoundPage,
  ssr: true,
})
image.png
Was this page helpful?