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: src/content/configuration/dev-server.mdx
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,7 @@ contributors:
21
21
- anikethsaha
22
22
- snitin315
23
23
- Biki-das
24
+
- SaulSilver
24
25
---
25
26
26
27
[webpack-dev-server](https://github.com/webpack/webpack-dev-server) can be used to quickly develop an application. See the [development guide](/guides/development/) to get started.
@@ -96,7 +97,7 @@ See the related [API documentation for `webpack-dev-server`](/api/webpack-dev-se
96
97
97
98
`'auto' | 'all'``[string]`
98
99
99
-
This option allows you to whitelist services that are allowed to access the dev server.
100
+
This option allows you to allowlist services that are allowed to access the dev server.
Copy file name to clipboardExpand all lines: src/content/configuration/externals.mdx
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ contributors:
18
18
- pranshuchittora
19
19
- kinetifex
20
20
- anshumanv
21
+
- SaulSilver
21
22
---
22
23
23
24
The `externals` configuration option provides a way of excluding dependencies from the output bundles. Instead, the created bundle relies on that dependency to be present in the consumer's (any end-user application) environment. This feature is typically most useful to **library developers**, however there are a variety of applications for it.
@@ -164,7 +165,7 @@ This syntax is used to describe all the possible ways that an external library c
It might be useful to define your own function to control the behavior of what you want to externalize from webpack. [webpack-node-externals](https://www.npmjs.com/package/webpack-node-externals), for example, excludes all modules from the `node_modules` directory and provides options to whitelist packages.
168
+
It might be useful to define your own function to control the behavior of what you want to externalize from webpack. [webpack-node-externals](https://www.npmjs.com/package/webpack-node-externals), for example, excludes all modules from the `node_modules` directory and provides options to allowlist packages.
0 commit comments