webpack/examples/multiple-entry-points/pageA.js

4 lines
105 B
JavaScript
Raw Normal View History

var common = require("./common");
2013-11-20 01:09:26 +08:00
require(["./shared"], function(shared) {
shared("This is page A");
});