Aug 25, 2017 · 1 min read
After this change to Gruntfile.js last year, multiple html paths can be specified when starting the server:
$ grunt serve --root="." --root="decks/*"And if you want to make this the default, change this line in Gruntfile.js:
var root = grunt.option('root') || '.';to
var root = grunt.option('root') || ['.','decks/*'];