79299879

Date: 2024-12-21 18:14:42
Score: 1
Natty:
Report link

To get the headers in NextJs 15 you have to await headers:

import { headers } from 'next/headers'
 
export default async function Page() {
  const headersList = await headers()
  const userAgent = headersList.get('user-agent')
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Abdelrahman Nagy