angular6-ngx编辑器图标未出现在生产中

时间:2018-09-19 10:09:59

标签: icons angular6 production ngx-editor

我正在开发angular6应用。 我正在使用ngx-editor。

编辑器似乎可以在localhost正常运行,但是当我将其部署在firebase中时,图标根本不会出现。

enter image description here

enter image description here

可能是什么原因? 如果您需要更多详细信息,请告诉我。

TIA。

1 个答案:

答案 0 :(得分:0)

最有可能的Font-Awesome样式表未部署到服务器。如果您将以下CSS嵌入组件的CSS

  

@import   url(“ https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css”);

并在ViewEncapsulation.None文件的@component装饰器中将封装设置为.ts,图标应出现

  

封装:ViewEncapsulation.None