4

I want to know how to disable livereload of gitbook. I tried this:

"plugins" : ["-livereload"]

but it doesn't work.

zhlsky
  • 43
  • 4

1 Answers1

2

There is a command line parameter --[no-]live that specifies whether live reloading is on(Default is true). You can disable live reload by put this:

gitbook serve --no-live

chestnutme
  • 21
  • 2