0

在此处输入图像描述我已经构建了我的 Angular2 应用程序,一切正常。现在我包含了 font-awesome,当我捆绑应用程序时,它给出了图片中显示的错误。无法加载 woff 和 woff2 文件。我的风格如下所示 -

            "styles": [
        "styles.css",
          "../node_modules/font-awesome/css/font-awesome.css",
          "../node_modules/primeng/resources/primeng.min.css",
  "../node_modules/primeng/resources/themes/omega/theme.css",
  "../node_modules/fullcalendar/dist/fullcalendar.css",
  "../node_modules/bootstrap/dist/css/bootstrap.min.css"
      ],

在此处输入图像描述

4

1 回答 1

0

由于文件夹结构在最近的角度版本中发生了变化,您应该指的是错误的路径修复它

"styles": [
    "styles.css",
      "node_modules/font-awesome/css/font-awesome.css",
      "node_modules/primeng/resources/primeng.min.css",
      "node_modules/primeng/resources/themes/omega/theme.css",
      "node_modules/fullcalendar/dist/fullcalendar.css",
      "node_modules/bootstrap/dist/css/bootstrap.min.css"
  ],
于 2017-04-12T19:36:06.650 回答