mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
17 lines
331 B
JavaScript
17 lines
331 B
JavaScript
module.exports = {
|
|
src: {
|
|
files: [
|
|
//what are the files that we want to watch
|
|
'assets/css/*.css',
|
|
'templates/**/*.html',
|
|
'grunt/*.js',
|
|
],
|
|
tasks: ['default'],
|
|
options: {
|
|
nospawn: true,
|
|
livereload: false,
|
|
}
|
|
}
|
|
|
|
};
|