grafana/tasks/options/connect.js

21 lines
334 B
JavaScript
Raw Normal View History

2013-11-15 15:29:27 -06:00
module.exports = function(config) {
return {
dev: {
options: {
port: 5601,
hostname: '*',
2013-11-15 15:29:27 -06:00
base: config.srcDir,
keepalive: true
}
},
dist: {
options: {
port: 5605,
hostname: '*',
base: config.destDir,
keepalive: true
}
},
2013-11-15 15:29:27 -06:00
}
};