aboutsummaryrefslogtreecommitdiff
path: root/webpack.common.js
diff options
context:
space:
mode:
authorMarcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de>2023-07-04 10:14:02 +0000
committerMarcus Eibrink-Lunzenauer <lunzenauer@elan-ev.de>2023-07-04 10:14:02 +0000
commit06e57c156a5cdb8dd6c175795a0d20d15f5a8bdd (patch)
treef0ca0e795c01b33d179342d075b82e51e4df12b2 /webpack.common.js
parent92fddf5b5e489fccb84b8b83f658082a4bf2079a (diff)
Add compact version of the WYSIWYG editor, closes #2474
Closes #2474 Merge request studip/studip!1789
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.common.js b/webpack.common.js
index d71aff6..3dd376d 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -3,7 +3,7 @@ const path = require("path");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const VueLoaderPlugin = require('vue-loader/lib/plugin');
const ESLintPlugin = require('eslint-webpack-plugin');
-const CKEditorWebpackPlugin = require( '@ckeditor/ckeditor5-dev-webpack-plugin' );
+const { CKEditorTranslationsPlugin } = require( '@ckeditor/ckeditor5-dev-translations' );
const { styles } = require('@ckeditor/ckeditor5-dev-utils');
@@ -142,7 +142,7 @@ module.exports = {
'resources/assets/javascripts/jquery/jstree/jquery.jstree.js',
]
}),
- new CKEditorWebpackPlugin({
+ new CKEditorTranslationsPlugin({
language: 'de',
addMainLanguageTranslationsToAllAssets: true
}),