summaryrefslogtreecommitdiff
path: root/lib/ckeditor5/webpack.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ckeditor5/webpack.config.js')
-rw-r--r--lib/ckeditor5/webpack.config.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ckeditor5/webpack.config.js b/lib/ckeditor5/webpack.config.js
index fd5cc3e..38cb5a9 100644
--- a/lib/ckeditor5/webpack.config.js
+++ b/lib/ckeditor5/webpack.config.js
@@ -1,5 +1,5 @@
1/** 1/**
2 * @license Copyright (c) 2014-2022, CKSource Holding sp. z o.o. All rights reserved. 2 * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved.
3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 3 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4 */ 4 */
5 5
@@ -10,7 +10,7 @@
10const path = require( 'path' ); 10const path = require( 'path' );
11const webpack = require( 'webpack' ); 11const webpack = require( 'webpack' );
12const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' ); 12const { bundler, styles } = require( '@ckeditor/ckeditor5-dev-utils' );
13const CKEditorWebpackPlugin = require( '@ckeditor/ckeditor5-dev-webpack-plugin' ); 13const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' );
14const TerserWebpackPlugin = require( 'terser-webpack-plugin' ); 14const TerserWebpackPlugin = require( 'terser-webpack-plugin' );
15 15
16module.exports = { 16module.exports = {
@@ -45,7 +45,7 @@ module.exports = {
45 }, 45 },
46 46
47 plugins: [ 47 plugins: [
48 new CKEditorWebpackPlugin( { 48 new CKEditorTranslationsPlugin( {
49 // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format. 49 // UI language. Language codes follow the https://en.wikipedia.org/wiki/ISO_639-1 format.
50 // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js). 50 // When changing the built-in language, remember to also change it in the editor's configuration (src/ckeditor.js).
51 language: 'fr', 51 language: 'fr',