ckeditor-nuxt icon indicating copy to clipboard operation
ckeditor-nuxt copied to clipboard

How to add Plugin "ckfinder" to your package ckeditor-nuxt?

Open standfv opened this issue 5 years ago • 1 comments

How to add Plugin "ckfinder" to your package ckeditor-nuxt?

standfv avatar Nov 05 '20 09:11 standfv

You can't because it's based on the simple upload adapter.

To use ckfinder instead of the adapater you can make your own build and integrate it with your nuxt app. I wrote posts that you can find helpful how to make a custom build and how to integrate ckeditor with nuxt.

You can also clone the repo change imports in the src/index.js file, install dependencies and try to make build based on it (use npm run build-bundle instead of npm run build there). Then copy files from dist to your proper node_modules. But this way you can rather test the ckfinder, during npm update your changes will be overwritten. To avoid overwritting you can completely delete my npm package and install the new build based on this repo as a local npm package with changed package name (this is sth I mention in the one of my posts).

blowstack avatar Nov 05 '20 12:11 blowstack