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: docs/config/README.md
+10
Original file line number
Diff line number
Diff line change
@@ -373,6 +373,16 @@ In v3 this means the opposite of `css.requireModuleExtension`.
373
373
}
374
374
```
375
375
376
+
### devServer.inline
377
+
378
+
- Type: `boolean`
379
+
- Default: `true`
380
+
381
+
Toggle between the dev-server's two different modes. See [devServer.inline](https://webpack.js.org/configuration/dev-server/#devserverinline) for more details. Note that:
382
+
383
+
- To use the `iframe mode` no additional configuration is needed. Just navigate the browser to `http://<host>:<port>/webpack-dev-server/<path>` to debug your app. A notification bar with messages will appear at the top of your app.
384
+
- To use the `inline mode`, just navigate to `http://<host>:<port>/<path>` to debug your app. The build messages will appear in the browser console.
0 commit comments