Skip to content

Commit 50a2e10

Browse files
committed
Merge pull request #261 from at0g/master
Correct console message for historyApiFallback
2 parents 0bd7252 + fe6aee7 commit 50a2e10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/webpack-dev-server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,5 @@ new Server(webpack(wpOpt), options).listen(options.port, options.host, function(
158158
else
159159
console.log("content is served from " + options.contentBase);
160160
if(options.historyApiFallback)
161-
console.log("404s will fallback to /index.html");
161+
console.log("404s will fallback to %s", options.historyApiFallback.index || "/index.html");
162162
});

0 commit comments

Comments
 (0)