this is the official Webpack template of vue scaffolding. What is the meaning of "start": "npm run dev" in it
what is the difference between npm run dev and npm start?
Why can"t you execute the dev command under scripts configuration by typing npm dev directly, but npm start can?
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"lint": "eslint --ext .js,.vue src",
"build": "node build/build.js"
},