Navegador aberto automático quando executado dev nextJs
// For a simple work-around on a *nix system just do this in package.json:
"scripts": {
"dev": "npm run open-browser && next dev",
"open-browser": "open http://localhost:3000",
}
KostasX