fuelux
Version:
Base Fuel UX styles and controls
32 lines (30 loc) • 486 B
JavaScript
module.exports = function (grunt) {
return {
server: {
options: {
hostname: '*',
base: {
path: '.',
options: {
index: ['index.html', 'tests.html']
}
},
port: 8000,
useAvailablePort: true
}
},
testServer: {
options: {
base: {
path: '.',
options: {
index: ['index.html', 'tests.html']
}
},
hostname: '*',
port: '<%= connectTestServerOptionsPort %>',
useAvailablePort: true
}
}
};
};