How can i stop the Vue Nuxt dev server in the VS Code Console

Viewed 495

Working with Vue Nuxt I start the dev server with "npm run dev". How can I stop the Server afterwards from the VS Code console? So far, the only way I found is closing the Terminal Window.

1 Answers

By using Ctrl + c you can stop the running dev server.

Related