From 550747a0c2179a4c2808688a5f6c9e76429c60fd Mon Sep 17 00:00:00 2001 From: Rodrigo Pedra Brum Date: Fri, 27 Jul 2018 15:10:03 -0300 Subject: [PATCH] Fix typo Fixes typo in console.log output when the build is the first build (direcotry => directory) --- packages/@vue/cli-service/lib/commands/build/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@vue/cli-service/lib/commands/build/index.js b/packages/@vue/cli-service/lib/commands/build/index.js index d4ef90a4d2..1df2f34461 100644 --- a/packages/@vue/cli-service/lib/commands/build/index.js +++ b/packages/@vue/cli-service/lib/commands/build/index.js @@ -226,7 +226,7 @@ async function build (args, api, options) { isFreshBuild ) { console.log( - chalk.gray(`Tip: the direcotry is meant to be served by an HTTP server, and will not work if\n` + + chalk.gray(`Tip: the directory is meant to be served by an HTTP server, and will not work if\n` + `you open it directly over file:// protocol. To preview it locally, use an HTTP\n` + `server like the ${chalk.yellow(`serve`)} package on npm.\n`) )