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' };