From 5136bf43a18a8ff87ee031a08eb407e0dd759c5d Mon Sep 17 00:00:00 2001 From: Adam Jeniski Date: Mon, 13 Oct 2025 08:13:43 -0900 Subject: [PATCH] run devtools after page render --- src/ajet/www/core.clj | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/ajet/www/core.clj b/src/ajet/www/core.clj index 6c77014..6cb58c7 100644 --- a/src/ajet/www/core.clj +++ b/src/ajet/www/core.clj @@ -10,8 +10,7 @@ (def index (str (h/html [:title "Ajet Dashboard"] - [:script {:src "https://cdn.jsdelivr.net/npm/eruda"}] - [:script "eruda.init()"] + [:link {:rel "stylesheet", :href "/css/style.css"}] [:link {:rel "icon", @@ -31,7 +30,9 @@ [:li [:a {:href "https://uptime.ajet.fyi"} "uptime"]] [:li [:a {:href "https://service-manager.ajet.fyi"} "ci"]] [:li [:a {:href "https://mini:8006"} "cluster"]] - [:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]]))) + [:li [:a {:href "http://192.168.1.124:8081"} "mp4"]]] + [:script {:src "https://cdn.jsdelivr.net/npm/eruda"}] + [:script "eruda.init()"]))) (defroutes approutes (GET "/" [] index))