[TASK] Add index option to grunt-conncet server

This commit is contained in:
Xaver Maierhofer 2016-05-22 23:39:19 +02:00
parent aa9416ed9b
commit 63dc066499
1 changed files with 6 additions and 1 deletions

View File

@ -3,7 +3,12 @@ module.exports = function (grunt) {
connect: {
server: {
options: {
base: "build/", //TODO: once grunt-contrib-connect 0.9 is released, set index file
base: {
path: 'build',
options: {
index: 'index.html'
}
},
livereload: true
}
}