mirror of
https://github.com/supabase/supabase.git
synced 2026-06-06 14:15:24 +08:00
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.
16 lines
578 B
TypeScript
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')
|