mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 02:40:26 -06:00
21 lines
334 B
JavaScript
21 lines
334 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
dev: {
|
|
options: {
|
|
port: 5601,
|
|
hostname: '*',
|
|
base: config.srcDir,
|
|
keepalive: true
|
|
}
|
|
},
|
|
dist: {
|
|
options: {
|
|
port: 5605,
|
|
hostname: '*',
|
|
base: config.destDir,
|
|
keepalive: true
|
|
}
|
|
},
|
|
}
|
|
};
|