astro-sveltia-cms
Version:
Add Sveltia CMS admin dashboard and a custom OAuth backend to your Astro project
14 lines (10 loc) • 340 B
TypeScript
import type { AstroIntegration } from 'astro';
declare function sveltiaCMS(options: SveltiaCMSOptions): AstroIntegration;
export default sveltiaCMS;
export declare interface SveltiaCMSOptions {
adminRoute?: string;
oauthDisabled?: boolean;
oauthLoginRoute?: string;
oauthCallbackRoute?: string;
}
export { }