Trung BìnhNext.js iconNext.js

Middleware proxy pattern trong Next.js như thế nào?

Middleware có thể rewrite requests đến API khác: NextResponse.rewrite(new URL('/api/proxy', request.url)).

  • Hoặc trong next.config.js dùng rewrites array để proxy: { source: '/api/:path', destination: 'https://backend.com/:path' }.
  • Hữu ích để: hide API endpoints, implement BFF (Backend For Frontend), avoid CORS issues.

Xem toàn bộ Next.js cùng filter theo level & chủ đề con.

Mở danh sách Next.js