We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9334fd8 commit 90068d8Copy full SHA for 90068d8
examples/explicit-vendor-chunk/webpack.config.js
@@ -13,7 +13,7 @@ module.exports = [
13
plugins: [
14
new webpack.DllPlugin({
15
name: "vendor_[hash]",
16
- path: path.resolve(__dirname, "js/manifest.json")
+ path: path.resolve(__dirname, "dist/manifest.json")
17
})
18
]
19
},
@@ -32,7 +32,7 @@ module.exports = [
32
33
34
new webpack.DllReferencePlugin({
35
- manifest: path.resolve(__dirname, "js/manifest.json")
+ manifest: path.resolve(__dirname, "dist/manifest.json")
36
37
38
}
0 commit comments