SKLINET / strapi-plugin-tinymce

11 stars 18 forks source link

TinyMCE doesn't show up #4

Closed Drillan767 closed 2 years ago

Drillan767 commented 2 years ago

Hello!

I'm using Strapi 4.4.0 on Node v14.20

I've installed the plugin, ran yarn build and set the API key in the configuration page, but I'm greeted with the following:

image

Also, my config/plugins.ts file looks like so:

module.exports = ({ env }) => ({
    tinymce: {
        enabled: true,
    },
    // other plugins

});

There are no info in the server console, and no error (related) in the browser console, so I don't really know where I should go from there... Any suggestion?

Thank you in advance

Sklico commented 2 years ago

Hi @Drillan767, check our readme please, I think you have a problem with CSP, so you should just update your config/middlewares.js file as we mentioned in README.

Thanks

Drillan767 commented 2 years ago

Well that was fast and working, thank you!