You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that the "npm start" (without "run") is the default way to start js projects. So it would be great to get possibility to call the "serve" script via the "npm start".
npm start is in a lot of cases used for starting a production server for a Node app, which is why we don't use that as the command for development. We don't want to give some users the impression that they can use the dev server for production usage.
What problem does this feature solve?
I think that the "npm start" (without "run") is the default way to start js projects. So it would be great to get possibility to call the "serve" script via the "npm start".
What does the proposed API look like?
"scripts": {
"start": "npm run serve",
"serve": "vue-cli-service serve",
...
}
The text was updated successfully, but these errors were encountered: