mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
docs: {
|
|
src: ['src/app/**/*.js','src/config.js'],
|
|
dest: config.docsDir+"/kibana",
|
|
options: {
|
|
unslash: true,
|
|
extension: '.asciidoc',
|
|
annotate: '// '
|
|
}
|
|
}
|
|
}
|
|
}; |