- Issue created by @etxaleku
- 🇺🇸United States etxaleku
Chris Kelly suggested F12 browser debug which shows these errors -
The resource from “https://pmr.ddev.site/libraries/dragula/dist/dragula.min.css?ss20sb” was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff). The resource from “https://pmr.ddev.site/libraries/dragula/dist/dragula.min.js?v=3.7.3” was blocked due to MIME type (“text/html”) mismatch (X-Content-Type-Options: nosniff).
So it looks like they need to be "text/css" and "application/javascript" respectively.
I have no idea how to do that and it sounds like dragula is probably very critical to the drag/drop Mercury Editor behavior so I probably need to wait for this issue to be resolved before I'll be able to proceed.
- 🇺🇸United States etxaleku
Clive over at Drupal Answers provided some direction. Turns out that a significant part of the issue is that the dragula css/js library is not installed as part of Mercury Editor installation and there is no instructions that call out the requirement to install it. Clive suggested
- Installing dragula (npm install dragula)
- Disabling CSS/JS aggregation
Once npm was installed the MIME type issues above were resolved and after disabling aggregation the Mercury Editor tray started working.
However, I'm still unable to get any drag and drop functionality to work as no UI controls are generated.