From 04937da256a993f4e80fd4cac32b8d284133f508 Mon Sep 17 00:00:00 2001 From: Ondrej Sika Date: Wed, 18 Oct 2017 12:53:00 +0200 Subject: [PATCH] package.json - use 127.0.0.1 instead of localhost (fix problem with ipv6 resolving) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 1eb6d18..33ad9aa 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "postinstall": "bower install", "prestart": "npm install", - "start": "http-server ./app -a localhost -p 8000 -c-1", + "start": "http-server ./app -a 127.0.0.1 -p 8000 -c-1", "pretest": "npm install", "test": "karma start karma.conf.js",