From 5a4b6c2eb019a2207ff9912cbbe99644378741d3 Mon Sep 17 00:00:00 2001 From: Conrad Zelck <git@simpel.cc> Date: Thu, 8 Feb 2024 18:07:01 +0100 Subject: [PATCH] fix: call sync js before sync css in head This is due to speed. Sync css can block sync js. So call sync js first. Signed-off-by: Conrad Zelck <git@simpel.cc> --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index b0e67f0..ac50534 100644 --- a/index.php +++ b/index.php @@ -4,8 +4,8 @@ <?php include dirname($_SERVER['DOCUMENT_ROOT']) . "/simpel.cc/php/head.php"; ?> <!-- <meta charset="utf-8"> --> <!-- <title>FreqBuddy</title> --> - <link rel="stylesheet" href="style.css"> <script src="script.js"></script> + <link rel="stylesheet" href="style.css"> </head> <body> <header> -- GitLab