在index.html文件的顶部我有<base href="/" />
。
下面我尝试加载文件放置在同一目录中
<link rel="stylesheet" href="styles.43ad38c1c1e1ce781d48.css">
结构目录为:
/site/
/site/index.html
/site/styles.43ad38c1c1e1ce781d48.css
答案 0 :(得分:3)
您可以通过内部的样式选项添加更多全局样式 angular.json中项目的构建目标选项。这些将被加载 就像您已将它们添加到index.html内的标签中一样。
"architect": {
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"styles": [
"src/styles.css",
"src/more-styles.css",
],
参考:https://github.com/angular/angular-cli/wiki/stories-global-styles
答案 1 :(得分:2)
当前目录的相对路径为“ ./”
<link rel="stylesheet" href="./styles.43ad38c1c1e1ce781d48.css">