From a3351cff4f7756251f7670de6cb781c99b25fde4 Mon Sep 17 00:00:00 2001 From: Frank Taillandier Date: Tue, 2 Jan 2018 22:22:05 +0100 Subject: [PATCH] Docs: LiveReload option --- docs/_docs/usage.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/_docs/usage.md b/docs/_docs/usage.md index a4201c1e..c71fc97a 100644 --- a/docs/_docs/usage.md +++ b/docs/_docs/usage.md @@ -65,15 +65,17 @@ jekyll serve # => A development server will run at http://localhost:4000/ # Auto-regeneration: enabled. Use `--no-watch` to disable. +jekyll serve --livreload +# LiveReload refreshes your browser after a change. + +jekyll serve --incremental +# Incremental will perform a partial build in order to reduce regeneration time. + jekyll serve --detach # => Same as `jekyll serve` but will detach from the current terminal. # If you need to kill the server, you can `kill -9 1234` where "1234" is the PID. # If you cannot find the PID, then do, `ps aux | grep jekyll` and kill the instance. ``` -
-
Livereload
-

If you want to enable Livereload, you can enable the jekyll-livereload plugin in a development config file.

-
```sh jekyll serve --no-watch