From 8db2f53c011dfd8c35391a37f7f1aaf48fd32af9 Mon Sep 17 00:00:00 2001 From: Bram Suurd Date: Sat, 3 Aug 2024 15:31:51 +0200 Subject: [PATCH] chore: Update analytics script URL to use HTTPS --- next.config.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/next.config.mjs b/next.config.mjs index 959d71a..7d02e58 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -21,7 +21,7 @@ const nextConfig = { return [ { source: "/analytics/:path*", - destination: `${process.env.NEXT_PUBLIC_ANALYTICS_URL}/:path*`, + destination: `https://${process.env.NEXT_PUBLIC_ANALYTICS_URL}/:path*`, }, ]; },