Update livereload.js
This commit is contained in:
parent
c3f59bceec
commit
d7a557f0b8
|
@ -8,7 +8,9 @@
|
|||
- Fix parsing of dates in arrays in `extra`
|
||||
- Add a `--force` argument to `zola init` to allow creating a Zola site in a non-empty directory
|
||||
- Make themes more flexible: `include` can now be used
|
||||
- Make search index generation configurable
|
||||
- Make search index generation configurable, see docs for examples
|
||||
- Fix Sass trying to load folders starting with `_`, causing issues with frameworks
|
||||
- Update livereload.js version
|
||||
|
||||
## 0.11.0 (2020-05-25)
|
||||
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -59,7 +59,7 @@ static INTERNAL_SERVER_ERROR_TEXT: &[u8] = b"Internal Server Error";
|
|||
static METHOD_NOT_ALLOWED_TEXT: &[u8] = b"Method Not Allowed";
|
||||
static NOT_FOUND_TEXT: &[u8] = b"Not Found";
|
||||
|
||||
// This is dist/livereload.min.js from the LiveReload.js v3.1.0 release
|
||||
// This is dist/livereload.min.js from the LiveReload.js v3.2.4 release
|
||||
const LIVE_RELOAD: &str = include_str!("livereload.js");
|
||||
|
||||
async fn handle_request(req: Request<Body>, root: PathBuf) -> Result<Response<Body>> {
|
||||
|
|
Loading…
Reference in a new issue