mirror of
https://github.com/arnaucube/commonroutesApp.git
synced 2026-02-08 03:56:41 +01:00
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
'use strict';
|
|
|
|
module.exports = function (grunt, options) {
|
|
return {
|
|
devserver: {
|
|
path: 'http://localhost:8888'
|
|
},
|
|
coverage: {
|
|
path: 'http://localhost:5555'
|
|
}
|
|
};
|
|
};
|