ember-ghost-attila-template
Version:
Static Site Template designed to work with Ember Ghost
15 lines (12 loc) • 324 B
JavaScript
;
var Funnel = require('broccoli-funnel');
const { join } = require('path');
module.exports = {
name: 'ember-ghost-attila-template',
included: function(/* app */) {
this._super.included.apply(this, arguments);
},
treeForPublic: function() {
return new Funnel(join(this.root, 'public'));
}
};