From 919b95b5488b953582f259f6b9eb3cc5a6a3ff6d Mon Sep 17 00:00:00 2001 From: Tim Wisniewski Date: Fri, 13 Nov 2015 18:54:41 -0500 Subject: [PATCH] Fix webpack-dev-server iframe link Per documentation at https://webpack.github.io/docs/webpack-dev-server.html#iframe-mode --- tutorials/getting-started/1.9 development-server/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/getting-started/1.9 development-server/README.md b/tutorials/getting-started/1.9 development-server/README.md index 8e32908..58c17de 100644 --- a/tutorials/getting-started/1.9 development-server/README.md +++ b/tutorials/getting-started/1.9 development-server/README.md @@ -10,6 +10,6 @@ npm install webpack-dev-server -g webpack-dev-server --progress --colors ``` -This binds a small express server on localhost:8080 which serves your static assets as well as the bundle (compiled automatically). It automatically updates the browser page when a bundle is recompiled (socket.io). Open [http://localhost:8080/webpack-dev-server/bundle](http://localhost:8080/webpack-dev-server/bundle) in your browser. +This binds a small express server on localhost:8080 which serves your static assets as well as the bundle (compiled automatically). It automatically updates the browser page when a bundle is recompiled (socket.io). Open [http://localhost:8080/webpack-dev-server/](http://localhost:8080/webpack-dev-server/) in your browser. > The dev server uses webpack's watch mode. It also prevents webpack from emitting the resulting files to disk. Instead it keeps and serves the resulting files from memory.