3.
What is the command to start a Next.js project in development mode?
next run dev
next dev
npm run dev
npm start dev
Correct: B, C
Both commands npm run dev and next dev are used to start a Next.js project in development mode. npm run dev is used when you have defined a script in your package.json file that runs next dev. next dev can be used directly if you have Next.js installed and wish to start the development server without using npm scripts.