fixup! refacto: extract livereload layer setup into a function

This commit is contained in:
Florian Briand 2024-08-09 13:00:00 +02:00
parent 60a409f20a
commit dfdf0d3bae
Signed by: florian_briand
GPG Key ID: CC981B9E6B98E70B

View File

@ -3,10 +3,10 @@ use axum::body::Body;
use axum::http::Request; use axum::http::Request;
use listenfd::ListenFd; use listenfd::ListenFd;
use notify::Watcher; use notify::Watcher;
use tower_livereload::predicate::Predicate;
use std::env; use std::env;
use std::path::Path; use std::path::Path;
use tokio::net::TcpListener; use tokio::net::TcpListener;
use tower_livereload::predicate::Predicate;
use tower_livereload::LiveReloadLayer; use tower_livereload::LiveReloadLayer;
/// Nous filtrons les requêtes de `htmx` pour ne pas inclure le script _JS_ qui gère le rechargement /// Nous filtrons les requêtes de `htmx` pour ne pas inclure le script _JS_ qui gère le rechargement