gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 17:06:22 24 4
gpt4 key购买 nike

我最近开始使用 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>

错误是: enter image description here

最佳答案

它没有加载,因为您需要使用 angular-cli.json 文件将 css 文件添加到项目中,而不是 index.html。为此,只需打开 angular-cli-json 并将 css 文件添加到 styles 中:

"styles": [
"styles.css",
"another-styles.css"
]

关于angular - index.html 没有加载本地 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44129492/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com