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

3 lines
71 B
JavaScript
Raw Normal View History

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