Tasks in Visual Studio Code
https://gyazo.com/fde7256f0310ff02c9f50b2aa6e7fba6
code:tasks.json
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "npm: dev",
"detail": "next dev",
"group": {
"kind": "build",
"isDefault": true
}
}
]
}