--- import MainLayout from '@layouts/MainLayout.astro'; import { detectPageType } from '@lib/detect-page-type'; export const prerender = false; const pathname = Astro.url.pathname; // "/news/society/chto-sluchilos-nochju-27-oktyabrya-2025-goda-1772178/" const pageInfo = detectPageType(pathname); // Или для полного URL const fullUrl = Astro.url.href; // Или для origin + pathname const fullPath = Astro.url.origin + Astro.url.pathname; ---

pathname: {pathname}

Page Type: {pageInfo.type}

Content Type: {pageInfo.contentType}

Full URL: {fullUrl}