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: content/configuration/index.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ contributors:
7
7
- grgur
8
8
- bondz
9
9
- sricc
10
+
- terinjokes
10
11
---
11
12
12
13
Webpack is fed via a configuration object. It is passed in one of two ways depending on how you are using webpack: through the terminal or via Node.js. All the available configuration options are specified below.
@@ -224,11 +225,15 @@ T> Notice that throughout the configuration we use Node's built-in [path module]
224
225
[alias](/configuration/resolve#resolve-alias): {
225
226
// a list of module name aliases
226
227
227
-
"module": "new-module"
228
+
"module": "new-module",
228
229
// alias "module" -> "new-module" and "module/path/file" -> "new-module/path/file"
229
230
230
231
"only-module$": "new-module",
231
232
// alias "only-module" -> "new-module", but not "module/path/file" -> "new-module/path/file"
0 commit comments