From 5920d3db81165bf548f51109419b74102cd9b9eb Mon Sep 17 00:00:00 2001 From: "scriptalert('xss')/script" Date: Thu, 30 Oct 2025 19:38:36 +0530 Subject: [PATCH] Update rewrite.js --- netlify/edge-functions/rewrite.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify/edge-functions/rewrite.js b/netlify/edge-functions/rewrite.js index 08eaa2d..62808c4 100644 --- a/netlify/edge-functions/rewrite.js +++ b/netlify/edge-functions/rewrite.js @@ -2,7 +2,7 @@ export default async (request, context) => { const path = context.geo?.country?.code === 'AU' ? '/edge/australia' : '/edge/not-australia'; return Response.redirect(new URL(path, request.url)); }; -//COMMETN +//COMMETN//comment export const config = { path: '/edge' };