duplicated-import.js 383 B

1234567891011121314
  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* global document, console */
  6. import ClassicEditor from '@ckeditor/ckeditor5-build-classic';
  7. import '@ckeditor/ckeditor5-core/src/editor/editor';
  8. ClassicEditor
  9. .create( document.querySelector( '#editor' ), {} )
  10. .catch( e => console.error( e ) );