mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 11:44:26 -06:00
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
|
module.exports = function() {
|
||
|
'use strict';
|
||
|
return {
|
||
|
options: {
|
||
|
layout: 'templates/layouts/default.html',
|
||
|
partials: ['templates/partials/*.hbs'],
|
||
|
helpers: ['templates/helpers/**/*.js'],
|
||
|
data: [],
|
||
|
flatten: true
|
||
|
},
|
||
|
pages: {
|
||
|
src: ['templates/*.html'],
|
||
|
dest: 'dist/'
|
||
|
}
|
||
|
};
|
||
|
};
|