angular – index.html没有加载本地CSS

前端之家收集整理的这篇文章主要介绍了angular – index.html没有加载本地CSS前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我最近开始使用AngularCLI.我已将所有文件从Angular2转移到AngularCLI项目.

但它没有加载一些本地的CSS文件,但它正在加载其他的CSS文件

目前的目录是:

-src
--index
--styles.css
--app
---angular2-fullcalendar
----fullcalendar.min.css

的index.html

<!doctype html>
<html lang="en">
<head>
  <Meta charset="utf-8">
  <title>Cudyangularcli</title>
  <base href="/">
  <Meta name="viewport" content="width=device-width,initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
  <link rel="stylesheet" type="text/css" href="styles.css">
  <link rel="stylesheet" type="text/css" href="../src/app/angular2-fullcalendar/fullcalendar.min.css" >
</head>
<body>
  <app-root>Loading...</app-root>
</body>
</html>

错误是:

它没有加载,因为你需要使用angular-cli.json文件将css文件添加到项目中,而不是index.html.为此,只需打开angular-cli-json并将css文件添加到样式中:
"styles": [
        "styles.css","another-styles.css"
]
原文链接:https://www.f2er.com/angularjs/142151.html

猜你在找的Angularjs相关文章