Skip to content

Commit 6e28747

Browse files
committed
fix log
1 parent 3bc2d17 commit 6e28747

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/gitbook-v2/src/middleware.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ async function serveWithQueryAPIToken(
325325
*/
326326
function getSiteURLFromRequest(request: NextRequest): URLWithMode | null {
327327
console.log('nextRequestUrl', request.nextUrl.toString());
328-
request.headers.entries().forEach(([key, value]) => console.log(key, value));
328+
Array.from(request.headers.entries()).forEach(([key, value]) => console.log(key, value));
329329

330330
const xGitbookUrl = request.headers.get('x-gitbook-url');
331331
if (xGitbookUrl) {

0 commit comments

Comments
 (0)