Skip to content

Commit

Permalink
Fix incorrect URL when not using inline modus (introduced in #676)
Browse files Browse the repository at this point in the history
  • Loading branch information
SpaceK33z committed Oct 29, 2016
1 parent e67721f commit 36817dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/webpack-dev-server.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ function processOptions(wpOpt) {
}));
}

var uri = domain + (options.inline !== false ? "/" : "webpack-dev-server/");
var uri = domain + (options.inline !== false ? "/" : "/webpack-dev-server/");

var server = new Server(compiler, options);

Expand Down

0 comments on commit 36817dc

Please sign in to comment.