mirror of https://github.com/webpack/webpack.git
10 lines
283 B
JavaScript
10 lines
283 B
JavaScript
|
module.exports = {
|
||
|
entry: {
|
||
|
app: { import: "./app.js", dependOn: ["react-vendors"] },
|
||
|
"react-vendors": ["react", "react-dom", "prop-types"]
|
||
|
},
|
||
|
optimization: {
|
||
|
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
|
||
|
}
|
||
|
};
|