You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I notice it has been a year without changes. Has this project died? There has been some major fixes in late versions of TinyMCE, would be great to have an upgrade. Is there a project forked that will maintain active updates?
The text was updated successfully, but these errors were encountered:
I'd suggest to migrate away from this bundle and directly use Tinymce with Symfony Encore.
Here's a small how to:
Add tinymce to your package.json
yarn add tinymce
Extend your webpack.config.js to make it copy the skin files to the public asset directory
Encore// directory where compiled assets will be stored.setOutputPath('public/build/')// public path used by the web server to access the output path.setPublicPath('/build')// copy tinymce skin files to asset directoy.copyFiles({from: 'node_modules/tinymce',to: 'tinymce/[path]/[name].[ext]'})// ...
Create your configuration and initialization file for tinymce:
If you do not want to include the tinymce initialization on any pages, you can import the global/tinymce.js instead only in the page specific Encore entries.
I notice it has been a year without changes. Has this project died? There has been some major fixes in late versions of TinyMCE, would be great to have an upgrade. Is there a project forked that will maintain active updates?
The text was updated successfully, but these errors were encountered: