add readme

delete unrequired configs
This commit is contained in:
Danel Kungla
2025-09-19 18:07:31 +03:00
parent 0c2cfe6d18
commit 9ed52dcf02
74 changed files with 68 additions and 954 deletions

View File

@@ -111,9 +111,9 @@ export async function middleware(request: NextRequest) {
let response = NextResponse.redirect(redirectUrl, 307);
let cacheIdCookie = request.cookies.get('_medusa_cache_id');
const cacheIdCookie = request.cookies.get('_medusa_cache_id');
let cacheId = cacheIdCookie?.value || crypto.randomUUID();
const cacheId = cacheIdCookie?.value || crypto.randomUUID();
let regionMap;
try {