From ab9af5add23ee4e5e7c9796c10c12e81e1b4dcc5 Mon Sep 17 00:00:00 2001 From: Diamond Lewis Date: Fri, 23 Oct 2020 22:31:15 -0500 Subject: [PATCH 1/2] Enable Live Reload --- README.md | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 57ce83b18..e59903e37 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,7 @@ npm run dev-win ``` Finally, open http://localhost:4000/ in your web browser. +File changes will be output to `_site` folder and the browser with auto refresh. ----- diff --git a/package.json b/package.json index e8a8ea6a9..b93bcc62b 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "main": "_app/main.js", "scripts": { "start": "npm run dev", - "jekyll": "bundle exec jekyll serve --incremental", + "jekyll": "bundle exec jekyll serve --incremental --livereload", "dev-webpack": "webpack --mode development --watch", "webpack": "webpack --mode production", "dev": "npm run dev-webpack & npm run jekyll", From b90b75c8c14f62a3ee38c9bf7a3099151abd1ff2 Mon Sep 17 00:00:00 2001 From: Diamond Lewis Date: Fri, 23 Oct 2020 22:33:38 -0500 Subject: [PATCH 2/2] typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e59903e37..d3d90f592 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ npm run dev-win ``` Finally, open http://localhost:4000/ in your web browser. -File changes will be output to `_site` folder and the browser with auto refresh. +File changes will be output to `_site` folder and the browser will auto refresh. -----