From 1a412bce387e6b670542b03070fde77763d5cbb4 Mon Sep 17 00:00:00 2001 From: Bram Suurd <78373894+BramSuurdje@users.noreply.github.com> Date: Tue, 5 Nov 2024 00:17:17 +0100 Subject: [PATCH] Update NEXT_PUBLIC_BUILD_TIME type to string --- frontend/next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/next.config.mjs b/frontend/next.config.mjs index fcb7365f1..528a6a3e3 100644 --- a/frontend/next.config.mjs +++ b/frontend/next.config.mjs @@ -15,7 +15,7 @@ const nextConfig = { }, env: { - NEXT_PUBLIC_BUILD_TIME: Date.now(), + NEXT_PUBLIC_BUILD_TIME: `${Date.now()}`, }, output: "export",