cloudflare/vinext

Public

mirrored from https://github.com/cloudflare/vinextAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v0.0.9

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

tests/fixtures/app-basic/app/api/not-found-route/route.ts

6lines · modecode

1import { notFound } from "next/navigation";
2
3// Route that calls notFound() — tests notFound catch in route handlers
4export async function GET() {
5 notFound();
6}
7