20 lines
415 B
JavaScript
Raw Normal View History

import { NetlifyCmsCore as CMS } from 'netlify-cms-core';
import './backends';
import './widgets';
import './editor-components';
import './locales';
2019-04-04 11:16:06 -07:00
if (typeof window !== 'undefined') {
/**
* Log the version number.
*/
if (typeof NETLIFY_CMS_APP_VERSION === 'string') {
console.log(`netlify-cms-app ${NETLIFY_CMS_APP_VERSION}`);
}
}
export const NetlifyCmsApp = {
...CMS,
};
export default CMS;