We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1aef86 commit 92c69e1Copy full SHA for 92c69e1
packages/@vue/cli-service/lib/commands/serve.js
@@ -235,7 +235,7 @@ module.exports = (api, options) => {
235
isFirstCompile = false
236
237
if (!isProduction) {
238
- const buildCommand = hasProjectYarn(api.getCwd()) ? `yarn build` : hasProjectPnpm() ? `pnpm run build` : `npm run build`
+ const buildCommand = hasProjectYarn(api.getCwd()) ? `yarn build` : hasProjectPnpm(api.getCwd()) ? `pnpm run build` : `npm run build`
239
console.log(` Note that the development build is not optimized.`)
240
console.log(` To create a production build, run ${chalk.cyan(buildCommand)}.`)
241
} else {
0 commit comments