mirror of https://github.com/webpack/webpack.git
9 lines
186 B
JavaScript
9 lines
186 B
JavaScript
|
// a chunks with a, b, c
|
||
|
require(["./a", "./b", "./c"], function(a, b, c) {});
|
||
|
|
||
|
// a chunk with a, b, d
|
||
|
require.ensure(["./a"], function(require) {
|
||
|
require("./b");
|
||
|
require("./d");
|
||
|
});
|