From b9314df5d406614e5c868f94140288cab9401ba9 Mon Sep 17 00:00:00 2001 From: sunny Date: Tue, 14 Aug 2018 21:40:04 +0900 Subject: [PATCH] url have been changed from 0.0.0.0 to localhost --- src/electron/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/electron/main.ts b/src/electron/main.ts index 50c1fe9..e81eb9a 100644 --- a/src/electron/main.ts +++ b/src/electron/main.ts @@ -9,7 +9,7 @@ import * as url from 'url'; // }); const indexUrl = url.format({ - pathname: path.join('//0.0.0.0:4200'), + pathname: path.join('//localhost:4200'), protocol: 'http:', slashes: true });