- Issue created by @drupalninja99
- Status changed to Closed: works as designed
almost 2 years ago 8:52am 24 January 2023 - πΊπ¦Ukraine dinazaur
Hello, you can find it in the documentation. Reqiurements -> With Composer (recommended) -> first point.
The module expects the various ckeditor plugins to live inside libraries/ckeditor/plugins/ but that is not where they go if you follow the directions. What fixed it for me was adding these lines to my composer.json install paths:
"web/libraries/ckeditor/plugins/ajax": ["ckeditor/ajax"],
"web/libraries/ckeditor/plugins/autocomplete": ["ckeditor/autocomplete"],
"web/libraries/ckeditor/plugins/mentions": ["ckeditor/mentions"],
"web/libraries/ckeditor/plugins/textmatch": ["ckeditor/textmatch"],
"web/libraries/ckeditor/plugins/textwatcher": ["ckeditor/textwatcher"],
Closed: works as designed
2.0
Documentation
Hello, you can find it in the documentation. Reqiurements -> With Composer (recommended) -> first point.