mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
* Updated package json but not updated source files * Update eslint plugin * updated files
17 lines
339 B
JavaScript
17 lines
339 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/',
|
|
},
|
|
};
|
|
};
|