build-config.js 402 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. module.exports = {
  7. destinationPath: './build/',
  8. editor: '@ckeditor/ckeditor5-editor-classic/src/classic',
  9. plugins: [
  10. '@ckeditor/ckeditor5-presets/src/article'
  11. ],
  12. moduleName: 'ClassicEditor',
  13. editorConfig: {
  14. toolbar: [ 'image', 'headings' ]
  15. }
  16. };