UNPKG

astro-decap-cms

Version:

Add Decap CMS's admin dashboard to your Astro project

12 lines (11 loc) 297 B
import identity from 'netlify-identity-widget'; export function initIdentity(adminPath) { identity.on('init', (user) => { if (!user) { identity.on('login', () => { document.location.href = adminPath; }); } }); identity.init(); }