You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
388 B

/**
* Connect grunt task for CARTO.js website
*
*/
module.exports = {
task: function() {
return {
server: {
options: {
port: 9001,
livereload: 35730,
open: true,
hostname: '0.0.0.0', // to be able to access the server not only from localhost
base: {
path: '.'
}
}
}
}
}
}