Skip to content

Tag: next.js

How to avoid duplicated meta tags? [duplicate]

This question already has answers here: Avoid Duplicate Meta Description and Keywords in Next.js (4 answers) Closed 1 year ago. I’m developing my website with next.js. My Question The code below is in _document.js Head component. These are root meta tags. When pages are dynamically created, these tags a…

running a Development server on NextJS (on the network)

While using ReactJS, when we use the command npm start, It starts the development server on localhost:3000 and also on the network, 192.168.1.2:3000 This was super easy, I could test my app on all the devices by going into that address. Recently I started learning NextJS and when I run the command npm run dev…