(label = 'Sample')
| 223 | } |
| 224 | |
| 225 | function buildNotFoundMetadata(label = 'Sample'): PageMetadata { |
| 226 | return { |
| 227 | title: `${label} Not Found | ${SITE_NAME}`, |
| 228 | description: `The requested Oracle AI Database ${label.toLowerCase()} page could not be found.`, |
| 229 | canonicalUrl: SITE_URL, |
| 230 | ogType: 'website', |
| 231 | ogImageUrl: DEFAULT_OG_IMAGE_URL, |
| 232 | ogImageAlt: DEFAULT_OG_IMAGE_ALT, |
| 233 | robots: 'noindex', |
| 234 | structuredData: [] |
| 235 | }; |
| 236 | } |
| 237 | |
| 238 | export function resolveRouteMetadata(route: RouteLocationNormalizedLoaded) { |
| 239 | if (route.name === 'sample-detail') { |
no outgoing calls
no test coverage detected