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.
18 lines (14 loc) • 475 B
text/typescript
// Plugin
import seoMetaFields from "./plugin";
export default seoMetaFields;
export { seoMetaFields };
// Types — Seo is re-exported via Types, avoid duplicate named exports
export * from "./types/Types";
export type {
PluginConfig,
AIConfig,
AutomationConfig,
WorkflowConfig,
} from "./types/PluginConfig";
// Pro dashboard (exported so users can optionally add it to structure)
export { default as SEODashboardPane } from "./components/pro/SEODashboardPane";