NextJs Open Browser secara otomatis

//  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