webpack/examples/named-chunks/webpack.config.js

6 lines
153 B
JavaScript

module.exports = {
optimization: {
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
}
};