webpack/examples/extra-async-chunk-advanced/webpack.config.js

12 lines
274 B
JavaScript
Raw Normal View History

"use strict";
module.exports = {
2023-03-12 10:27:40 +08:00
// mode: "development" || "production",
optimization: {
splitChunks: {
minSize: 0 // This example is too small
},
2018-12-19 21:05:17 +08:00
chunkIds: "deterministic" // To keep filename consistent between different modes (for example building only)
}
2017-01-11 17:51:58 +08:00
};