webpack/examples/code-splitting-depend-on-ad.../webpack.config.js

13 lines
431 B
JavaScript
Raw Normal View History

module.exports = {
entry: {
app: { import: "./app.js", dependOn: ["other-vendors"] },
page1: { import: "./page1.js", dependOn: ["app", "react-vendors"] },
"react-vendors": ["react", "react-dom", "prop-types"],
"other-vendors": ["lodash", "isomorphic-fetch"]
},
optimization: {
runtimeChunk: "single",
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
}
};