From 13dd502fed4ef45fc54470df64d36eaec170de8d Mon Sep 17 00:00:00 2001
From: Piotr Gawron <p.gawron@atcomp.pl>
Date: Tue, 2 Apr 2024 15:34:05 +0200
Subject: [PATCH] relative path to config file

---
 pages/_document.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pages/_document.tsx b/pages/_document.tsx
index eaa2d812..02f5db06 100644
--- a/pages/_document.tsx
+++ b/pages/_document.tsx
@@ -7,7 +7,7 @@ const Document = (): React.ReactNode => (
     <body>
       <Main />
       <NextScript />
-      <Script src="/config.js" strategy="beforeInteractive" />
+      <Script src="./config.js" strategy="beforeInteractive" />
     </body>
   </Html>
 );
-- 
GitLab