| 12345678910111213141516171819202122232425262728293031323334353637 |
- /**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- /* jshint browser: false, node: true, strict: true */
- 'use strict';
- module.exports = {
- // Specify path where bundled editor will be saved.
- destinationPath: './build/dist/',
- editor: 'editor-classic/classic',
- plugins: [
- 'autoformat',
- 'basic-styles/bold',
- 'basic-styles/italic',
- 'clipboard',
- 'enter',
- 'heading',
- 'image',
- 'link',
- 'list',
- 'paragraph',
- 'typing',
- 'undo'
- ],
- rollupOptions: {
- // Name of CKEditor instance exposed as global variable by a bundle.
- moduleName: 'ClassicEditor',
- // The format of the generated bundle.
- format: 'iife',
- }
- };
|