Files
supabase/apps/docs/app/guides/functions/troubleshooting/page.tsx
Charis 8b72d96d66 docs: add product-specific troubleshooting views (#37671)
We have a global troubleshooting view at /guides/troubleshooting, but
for greater visibility, we should also have product-specific
troubleshooting views. This is the same view and same data as the global
page, but filtered down to a specific product.
2025-08-05 18:31:11 -04:00

16 lines
578 B
TypeScript

import SectionTroubleshootingPage, {
generateSectionTroubleshootingMetadata,
} from '~/features/docs/TroubleshootingSection.page'
export default async function FunctionsTroubleshootingPage() {
return (
<SectionTroubleshootingPage
topic="functions"
sectionName="Edge Functions"
description="Search or browse troubleshooting guides for common Edge Functions issues, including deployment problems, runtime errors, and environment configuration."
/>
)
}
export const metadata = generateSectionTroubleshootingMetadata('functions', 'Edge Functions')