違いは何ですか npm run serve
およびnpm run dev
vuejs内。 npm run serveコマンドを使用してプロジェクトを実行する理由
npm run serve
は基本的に、「 npm お願いしますrun私が名前serveinpackage.json "同じことがnpm run dev
でも発生します。
これを考えると、コマンドはまったく同じこと、同じこと、または非常に異なることを実行できます。通常、これらはlocalhostで開発サーバーを実行するための省略形ですが、これは規則ではなく、規則にすぎません。
したがって、package.json
ファイルをチェックインして、
"scripts": {
"serve": "[list of commands here]",
"dev": "[list of commands here]"
},