mirror of https://github.com/webpack/webpack.git
4 lines
114 B
JavaScript
4 lines
114 B
JavaScript
|
require.ensure(["./shared"], function(require) {
|
||
|
var shared = require("./shared");
|
||
|
shared("This is page B");
|
||
|
});
|