decap-cms-app
Version:
An extensible, open source, Git-based, React CMS for static sites. Reusable congiuration with React as peer.
15 lines (12 loc) • 312 B
JavaScript
import { DecapCmsCore as CMS } from 'decap-cms-core';
import './extensions.js';
// Log version
if (typeof window !== 'undefined') {
if (typeof DECAP_CMS_APP_VERSION === 'string') {
console.log(`decap-cms-app ${DECAP_CMS_APP_VERSION}`);
}
}
export const DecapCmsApp = {
...CMS,
};
export default CMS;