Question from the Next.js test

What is the path to the about page in Next.js?

Easy

Consider the following file in a Next.js application:

// pages/about.js

export default function About() {
  return <div>About us</div>;
}

What URL is automatically associated with this file by the Next.js Page Router?

Author: AnasStatus: PublishedQuestion passed 191 times
Edit
4
Community EvaluationsNo one has reviewed this question yet, be the first!