diff options
author | 2025-02-06 13:30:02 +0000 | |
---|---|---|
committer | 2025-02-06 13:30:02 +0000 | |
commit | 81a708d430304eda43cd5c7d9ca47d7096110f5f (patch) | |
tree | e9b1ecd7f1608f3a5c895ee137d11bf4d6cc517b /packages/integrations/netlify/test | |
parent | 2000f523d19896095b0f75a345db9096d0344ef1 (diff) | |
download | astro-81a708d430304eda43cd5c7d9ca47d7096110f5f.tar.gz astro-81a708d430304eda43cd5c7d9ca47d7096110f5f.tar.zst astro-81a708d430304eda43cd5c7d9ca47d7096110f5f.zip |
chore: fix linting issues
Diffstat (limited to 'packages/integrations/netlify/test')
-rw-r--r-- | packages/integrations/netlify/test/hosted/hosted-astro-project/src/middleware.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/netlify/test/hosted/hosted-astro-project/src/middleware.ts b/packages/integrations/netlify/test/hosted/hosted-astro-project/src/middleware.ts index 4ecc924a5..1112a3566 100644 --- a/packages/integrations/netlify/test/hosted/hosted-astro-project/src/middleware.ts +++ b/packages/integrations/netlify/test/hosted/hosted-astro-project/src/middleware.ts @@ -1,7 +1,7 @@ import https from 'node:https'; export const onRequest = (context, next) => { - console.log(context.netlify); + console.info(context.netlify); context.locals.middleware = context?.locals?.netlify?.context?.geo?.country?.code ?? null; context.locals.runtime = 'Deno' in globalThis ? 'Deno' : 'Node'; context.locals.title = 'Middleware'; |