mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-08 12:06:50 +01:00
geolocation added on offerCar and travel page
This commit is contained in:
35
www/lib/ui-leaflet/grunt/connect.js
Normal file
35
www/lib/ui-leaflet/grunt/connect.js
Normal file
@@ -0,0 +1,35 @@
|
||||
'use strict';
|
||||
var getAvailPort = require('./utils/getAvailPort');
|
||||
var port = getAvailPort(8888);
|
||||
|
||||
module.exports = function (grunt, options) {
|
||||
return {
|
||||
options: {
|
||||
base: ''
|
||||
},
|
||||
webserver: {
|
||||
options: {
|
||||
port: port,
|
||||
keepalive: true
|
||||
}
|
||||
},
|
||||
devserver: {
|
||||
options: {
|
||||
port: 8888
|
||||
}
|
||||
},
|
||||
testserver: {
|
||||
options: {
|
||||
port: 9999
|
||||
}
|
||||
},
|
||||
coverage: {
|
||||
options: {
|
||||
base: 'coverage/',
|
||||
directory: 'coverage/',
|
||||
port: 5555,
|
||||
keepalive: true
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user