From ae321c01a61d0c84d21269a6046adebc8f84143d Mon Sep 17 00:00:00 2001 From: Barak Drechsler Date: Thu, 7 Sep 2017 12:16:42 +0300 Subject: [PATCH] Fix typo in sourceType example. Fix typo in sourceType example from `commonsjs2` to the correct one `commonjs2` --- src/content/plugins/dll-plugin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/plugins/dll-plugin.md b/src/content/plugins/dll-plugin.md index e31b2241eb44..31b1357d69c2 100644 --- a/src/content/plugins/dll-plugin.md +++ b/src/content/plugins/dll-plugin.md @@ -90,7 +90,7 @@ new webpack.DllReferencePlugin({ manifest: require("./manifest.json"), name: "./my-dll.js", scope: "xyz", - sourceType: "commonsjs2" + sourceType: "commonjs2" }) ```