From cd95625b7ca6fc90f538dc7a63e3d1f92e34016b Mon Sep 17 00:00:00 2001 From: Sam Carlton Date: Tue, 26 Apr 2022 11:44:16 -0500 Subject: [PATCH] Log pathname --- src/pages/app/[slug].astro | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/app/[slug].astro b/src/pages/app/[slug].astro index 3420416..71c2301 100644 --- a/src/pages/app/[slug].astro +++ b/src/pages/app/[slug].astro @@ -40,6 +40,7 @@ console.log('Astro.params', Astro.params ) console.log('apiUrl', apiUrl ) console.log('Astro.request', Object.keys( Astro.request ) ) console.log('Astro.request.url', Astro.request.url ) +console.log('Astro.site.pathname', Astro.site.pathname ) const appEntry = await axios.get(apiUrl) .then( response => {