Skip to content

Commit

Permalink
chore: remove parentheses around site url (vuejs#1666)
Browse files Browse the repository at this point in the history
As VSCode makes `http://localhost:8080/)` including trailing parentheses which leads to a 404.
  • Loading branch information
morrislaptop authored and ulivz committed Jun 22, 2019
1 parent 998cfa3 commit 9923f83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@vuepress/core/lib/node/webpack/DevLogPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = class DevLogPlugin {
+ (
isFirst
? ''
: `${chalk.gray(`(${displayUrl})`)}`
: `${chalk.gray(`${displayUrl}`)}`
)
)
if (isFirst) {
Expand Down

0 comments on commit 9923f83

Please sign in to comment.