From 6dbaf99b29ef75b11a52c5d96a26ae97bebc87da Mon Sep 17 00:00:00 2001 From: Unchained Date: Wed, 25 Mar 2026 19:09:10 +0200 Subject: [PATCH] fix(analytics): use direct OpenPanel URL instead of proxy Use https://op.nodecrew.me/api and https://op.nodecrew.me/op1.js directly since OpenPanel is self-hosted. --- src/app/[locale]/layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/[locale]/layout.tsx b/src/app/[locale]/layout.tsx index bb9043c..b7c9568 100644 --- a/src/app/[locale]/layout.tsx +++ b/src/app/[locale]/layout.tsx @@ -50,8 +50,8 @@ export default async function LocaleLayout({ clientId={process.env.NEXT_PUBLIC_OPENPANEL_CLIENT_ID || ""} trackScreenViews={true} trackOutgoingLinks={true} - apiUrl="/api/op" - scriptUrl="/api/op/op1.js" + apiUrl="https://op.nodecrew.me/api" + scriptUrl="https://op.nodecrew.me/op1.js" /> {children}