marko/runtime/loader/index.js
2017-01-18 18:22:14 -08:00

7 lines
247 B
JavaScript

if (process.env.BUNDLE) {
// you cannot load templates dynamically within a bundle
// all templates should be pre-compiled as part of the bundle
module.exports = function(){};
} else {
module.exports = require('./index-default');
}