While implementing SEO optimizations on our pages, I realized that the type definitions for PageMetadata
(defined in @plasmicapp/loader-fetcher/dist/api.d.ts
) are missing the canonical
entry that I can define in the page settings:
export interface PageMetadata {
path: string;
title?: string | null;
description?: string | null;
openGraphImageUrl?: string | null;
}