Skip to content

Commit 90068d8

Browse files
committed
path fix examples
1 parent 9334fd8 commit 90068d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/explicit-vendor-chunk/webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ module.exports = [
1313
plugins: [
1414
new webpack.DllPlugin({
1515
name: "vendor_[hash]",
16-
path: path.resolve(__dirname, "js/manifest.json")
16+
path: path.resolve(__dirname, "dist/manifest.json")
1717
})
1818
]
1919
},
@@ -32,7 +32,7 @@ module.exports = [
3232
},
3333
plugins: [
3434
new webpack.DllReferencePlugin({
35-
manifest: path.resolve(__dirname, "js/manifest.json")
35+
manifest: path.resolve(__dirname, "dist/manifest.json")
3636
})
3737
]
3838
}

0 commit comments

Comments
 (0)