mirror of https://github.com/webpack/webpack.git
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
|
module.exports = function() {
|
||
|
console.log("Page B");
|
||
|
require.ensure([], ()=>{
|
||
|
const page = require("./pageC");
|
||
|
page();
|
||
|
});
|
||
|
};
|