Cloudflare Page with Edge Runtime return 404 Not Found
does edge runtime actuall work? It does not work with this simplest demo:
// src/app/page.tsx
export const runtime = "edge";
export default function Home() {
return <div>Hello from the edge!</div>;
}