commit: 968354923ec5063946d561e41194870ce37ec43a
parent: 59ddf81a4533044452bd7e6a25dd4469cc660ffb
Author: Nolan Lawson <nolan@nolanlawson.com>
Date: Fri, 30 Jun 2017 04:43:26 -0700
Fix webpack-dev-server on Windows (#4000)
* Fix webpack-dev-server on Windows
* Serve webpack from 0.0.0.0, access at 127.0.0.1
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/webpack-dev-server b/bin/webpack-dev-server
@@ -23,7 +23,7 @@ end
begin
dev_server = YAML.load_file(CONFIG_FILE)["development"]["dev_server"]
- DEV_SERVER_HOST = "http#{"s" if args('--https') || dev_server["https"]}://#{args('--host') || dev_server["host"]}:#{args('--port') || dev_server["port"]}"
+ DEV_SERVER_HOST = "http#{"s" if args('--https') || dev_server["https"]}://#{dev_server["host"]}:#{args('--port') || dev_server["port"]}"
rescue Errno::ENOENT, NoMethodError
puts "Webpack dev_server configuration not found in #{CONFIG_FILE}."
diff --git a/config/webpacker.yml b/config/webpacker.yml
@@ -19,7 +19,7 @@ development:
<<: *default
dev_server:
- host: 0.0.0.0
+ host: 127.0.0.1
port: 8080
https: false