fix: ensure typescript routes are hit most to least specific

This commit is contained in:
Andy Burke 2025-06-25 20:24:51 -07:00
parent 4f68a64a88
commit 1928bfcb5e
6 changed files with 35 additions and 12 deletions

8
tests/www/echo/index.ts Normal file
View file

@ -0,0 +1,8 @@
export function GET(_req: Request, _meta: Record<string, any>): Response {
return new Response('echo! .... echo. ................... echo?', {
status: 200,
headers: {
'Content-Type': 'text/plain'
}
});
}