UNPKG

astro-decap-cms

Version:

Add Decap CMS's admin dashboard to your Astro project

9 lines (8 loc) 363 B
import type { CmsConfig } from 'decap-cms-core'; import type { Plugin } from 'vite'; import type { PreviewStyle } from './types'; export default function AdminDashboardPlugin({ config, previewStyles, identityWidget, }: { config: Omit<CmsConfig, 'load_config_file' | 'local_backend'>; previewStyles: PreviewStyle[]; identityWidget: string; }): Plugin;