首页 > 解决方案 > ASP.NET Core Angular 中的 Identity Server 4 - 如何共享 css?

问题描述

我已经搭建了 Identity Server 页面。我需要以与应用程序其余部分相同的方式设置它们的样式。然而,它似乎有自己的“根”。而且我找不到分享主题css的方法。

主题 css 来自devextreme并且只要我能看到它部署在dist/styles.460fbddcdafd4abc24c1.css文件中。

整个应用程序都可以看到它,我不需要使用link它,因为它会自动构建到dist\index.html - <link rel="stylesheet" href="styles.460fbddcdafd4abc24c1.css"></head>

IS4 root 似乎指向~/Identity路径。所以它找不到主题 css 类。

到目前为止唯一的解决方案是 - 将主题 css 文件复制到wwwroot并添加到_Layout.cshtml

<link rel="stylesheet" href="~/../dx.dark.css">

还有另一种正确的方法吗?

标签: cssangularasp.net-corerazoridentityserver4

解决方案


推荐阅读