Skip to content

Commit

Permalink
Be able to start grunt server without starting up the browser window. (
Browse files Browse the repository at this point in the history
…#389)

The default behavior is the same as always (browser starts up with "grunt server")
but if you pass in --nobrowser, it won't start the browser.
  • Loading branch information
jmazzitelli authored and jshaughn committed Jul 13, 2017
1 parent 25a0bc2 commit b2f3f84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/main/ui/Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ module.exports = function (grunt) {
},
livereload: {
options: {
open: true,
open: !grunt.option("nobrowser"),
base: [
'.tmp',
'<%= projectSettings.dist %>'
Expand Down

0 comments on commit b2f3f84

Please sign in to comment.