Posts tagged tinymce

Migrating TinyMCE from v5.9 to v8.3 - Part 2

Published At:

The Migration Strategy: Self-Hosted TinyMCE with Static Copy

Instead of fighting Vite's module bundler, the solution uses a hybrid approach: TinyMCE is loaded as a traditional global script, while only the configuration runs through Vite.

Step 1: Remove TinyMCE from npm, Use Self-Hosted Distribution

Download TinyMCE 8 Community (GPL) from the official download page and place the full distribution...

Read More

Migrating TinyMCE from v5.9 to v8.3 - Part 1

Published At:

Migrating TinyMCE from v5.9 to v8.3 in a Laravel 8 → 11 Upgrade

Introduction

When migrating a Laravel blog application from Laravel 8 to Laravel 11, one of the most challenging frontend tasks is upgrading TinyMCE — the rich text editor used in the admin panel. This isn't a simple version bump. You're dealing with two simultaneous breaking changes:

  1. Build system: webpack.mix.js (Laravel Mix) → Vite 5 (Laravel's new...

Read More