mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 02:10:45 -06:00
ea27eca147
Co-authored-by: Santiago <santiagohernandez.1997@gmail.com>
18 lines
300 B
JavaScript
18 lines
300 B
JavaScript
module.exports = function () {
|
|
'use strict';
|
|
return {
|
|
options: {
|
|
data: [],
|
|
flatten: true,
|
|
},
|
|
txt: {
|
|
options: {
|
|
layout: 'templates/partials/layout/default.txt',
|
|
ext: '.txt',
|
|
},
|
|
src: ['templates/*.txt'],
|
|
dest: 'dist/',
|
|
},
|
|
};
|
|
};
|