Next.js
After developing your application and configuring your routes to run on the edge runtime, you can use
@cloudflare/next-on-pages
to build your
application for both Cloudflare Pages and zugriff.
-
Configure your routes and API endpoints
// page|endpoint.tsx|tsexport const runtime = 'edge';export default function Page() {return (...);} -
(Optional) Configure “next/image”
next.config.js ...images: {...unoptimized: true} -
Build your application with
@cloudflare/next-on-pages
Terminal window npx @cloudflare/next-on-pages -
Deploy and Forget.
Terminal window zugriff deploy