mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
8 lines
227 B
JavaScript
8 lines
227 B
JavaScript
module.exports = {
|
|
name: 'asset-delivery',
|
|
postBuild: function (results) {
|
|
var fs = this.project.require('fs-extra');
|
|
|
|
fs.copySync(results.directory + '/index.html', '../server/views/default.hbs');
|
|
}
|
|
};
|