Created
March 24, 2017 15:23
Advanced splitting of multi-entry project using webpack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
new webpack.optimize.CommonsChunkPlugin({ | |
name: "common", | |
chunks: ["site", "admin"] | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"site": "./src/site", | |
"admin": "./src/admin" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "common", | |
chunks: ["site", "admin"] | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "common-vendor", | |
chunks: ["common"], | |
minChunks | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "site-vendor", | |
chunks: ["site"], | |
minChunks | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "admin-vendor", | |
chunks: ["admin"], | |
minChunks | |
}) | |
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "common-vendor", | |
chunks: ["common"], | |
minChunks | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "site-vendor", | |
chunks: ["site"], | |
minChunks | |
}), | |
new webpack.optimize.CommonsChunkPlugin({ | |
name: "admin-vendor", | |
chunks: ["admin"], | |
minChunks | |
}) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment