From 847a18f7002b95022c149a3bc61f7b257b55ed6e Mon Sep 17 00:00:00 2001 From: Lindsay Wardell <32229300+lindsaykwardell@users.noreply.github.com> Date: Fri, 18 Jun 2021 09:46:45 -0700 Subject: [PATCH] Correct vue.config.js example A bracket is missing from the vue.config.js configuration example, this change would add in the missing bracket so the code example is valid. --- src/guide/migration/migration-build.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/guide/migration/migration-build.md b/src/guide/migration/migration-build.md index 3ca6829bc2..496718e87d 100644 --- a/src/guide/migration/migration-build.md +++ b/src/guide/migration/migration-build.md @@ -91,6 +91,7 @@ The following workflow walks through the steps of migrating an actual Vue 2 app } } }) + } } ```