没有 css 的 tinyMCE 构建
tinyMCE build without css
我克隆了https://github.com/tinymce/tinymce
和 运行 生成器:
grunt bundle --themes modern --plugins table,paste
...
效果很好,
但是当我 运行 tinymce.full.min.js
时,它从服务器 css 文件加载:
skins/lightgray/skin.min.css
skins/lightgray/content.min.css
我的项目中有通用 min.css 文件,我可以在其中包含这些文件
那么,我可以禁止使用生成器从缩小的文件中加载那些 css 文件,还是以其他方式执行此操作?
您可以选择您想要的主题并根据需要定义自己的主题:
theme: 'my_theme',
或者您可以选择其他已经存在的主题,例如:https://pixabay.com/de/blog/posts/a-modern-custom-theme-for-tinymce-4-40/
我克隆了https://github.com/tinymce/tinymce
和 运行 生成器:
grunt bundle --themes modern --plugins table,paste
...
效果很好,
但是当我 运行 tinymce.full.min.js
时,它从服务器 css 文件加载:
skins/lightgray/skin.min.css
skins/lightgray/content.min.css
我的项目中有通用 min.css 文件,我可以在其中包含这些文件
那么,我可以禁止使用生成器从缩小的文件中加载那些 css 文件,还是以其他方式执行此操作?
您可以选择您想要的主题并根据需要定义自己的主题:
theme: 'my_theme',
或者您可以选择其他已经存在的主题,例如:https://pixabay.com/de/blog/posts/a-modern-custom-theme-for-tinymce-4-40/