sanity-plugin-seo
Version:
Complete SEO toolkit for Sanity Studio with live scoring, AI suggestions, team workflows, and 30+ structured data types. Free and AI tiers live. Pro coming soon.
27 lines (26 loc) • 650 B
TypeScript
export interface AIConfig {
provider: "openai" | "anthropic" | "groq";
apiKey: string;
model?: string;
}
export interface AutomationConfig {
autoCanonical?: boolean;
autoOgImage?: boolean;
autoAltText?: boolean;
autoDescription?: boolean;
}
export interface WorkflowConfig {
requireSeoApproval?: boolean;
reviewers?: string[];
}
export interface PluginConfig {
proFeature?: string;
aiFeature?: AIConfig;
bodyField?: string;
slugField?: string;
defaultFetchType?: string;
dashboard?: boolean;
automation?: AutomationConfig;
workflow?: WorkflowConfig;
documentTypes?: string[];
}