We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've added config options in app.module.ts
TinymceModule.withConfig({ plugins: ['link', 'paste', 'table','textcolor'], auto_focus: false })
but after ng build I'm putting it under http://example.com/mysite/myproject/#/users/create but it shows error in console and in editor textcolor not working
ng build
Failed to load plugin: textcolor from url /assets/tinymce/plugins/textcolor/plugin.js
I've textcolor folder and plugin.js inside it in my assets folder like assets/tinymce/plugins/textcolor/plugin.js
assets/tinymce/plugins/textcolor/plugin.js
What m I missing?
The text was updated successfully, but these errors were encountered:
I had the same problem. I solved it by install npm install tinymce --save and import the plugins like import 'tinymce/plugins/emoticons/plugin.js';
npm install tinymce --save
import 'tinymce/plugins/emoticons/plugin.js';
Sorry, something went wrong.
No branches or pull requests
I've added config options in app.module.ts
but after
ng build
I'm putting it under http://example.com/mysite/myproject/#/users/createbut it shows error in console and in editor textcolor not working
I've textcolor folder and plugin.js inside it in my assets folder like
assets/tinymce/plugins/textcolor/plugin.js
What m I missing?
The text was updated successfully, but these errors were encountered: