From 1d8fa3a9431af9667246cdfe2f7c7b9d1eef27fa Mon Sep 17 00:00:00 2001 From: Barry <5514034+barry4dev@users.noreply.github.com> Date: Tue, 9 Jul 2019 20:34:20 -0400 Subject: [PATCH] fix terminal links (cmd-click) on VSCode (#7849) --- packages/next/build/output/store.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/next/build/output/store.ts b/packages/next/build/output/store.ts index 5dc541526b..fdc0f24480 100644 --- a/packages/next/build/output/store.ts +++ b/packages/next/build/output/store.ts @@ -84,6 +84,6 @@ store.subscribe(state => { Log.ready( 'compiled successfully' + - (state.appUrl ? ` (ready on ${state.appUrl})` : '') + (state.appUrl ? ` - ready on ${state.appUrl}` : '') ) }) -- GitLab