You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bin/webpack-dev-server.js
+10-2Lines changed: 10 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,9 @@ var optimist = require("optimist")
37
37
38
38
.describe("port","The port").default("port",8080)
39
39
40
-
.describe("host","The hostname/ip address the server will bind to").default("host","localhost");
40
+
.describe("host","The hostname/ip address the server will bind to").default("host","localhost")
41
+
42
+
.boolean("useRealFileSystem").describe("useRealFileSystem","Write bundles to real file system instead of in-memory virtual file system").default("useRealFileSystem",false);
0 commit comments