admin管理员组文章数量:1404467
I have started a .Net 9.0 'MAUI Blazor Hybrid and Web App' project. The solution contains the following projects:
- myawesomeapp
- myawesomeapp.Shared
- myawesomeapp.Web
- myawesomeapp.Web.Client
I am going to create mainly Blazor web assembly components in myawesomeapp.Shared, which can then be used in the mobile app and the web app. I would also like both applications to share a cascading style sheet, to avoid duplication and potential inconsistencies. I have tried calling the css from the App.razor file and the mobile index.html from a CDN site:
<link href=".css" rel="stylesheet"/>
But it doesn't it doesn't load. How might I reference the css file if I place it in the myawesomeapp.Shared project, please?
I have started a .Net 9.0 'MAUI Blazor Hybrid and Web App' project. The solution contains the following projects:
- myawesomeapp
- myawesomeapp.Shared
- myawesomeapp.Web
- myawesomeapp.Web.Client
I am going to create mainly Blazor web assembly components in myawesomeapp.Shared, which can then be used in the mobile app and the web app. I would also like both applications to share a cascading style sheet, to avoid duplication and potential inconsistencies. I have tried calling the css from the App.razor file and the mobile index.html from a CDN site:
<link href="http://cdn.myawesomedomain/cogs/myawesomestylesheet.css" rel="stylesheet"/>
But it doesn't it doesn't load. How might I reference the css file if I place it in the myawesomeapp.Shared project, please?
Share Improve this question asked Mar 11 at 10:00 sanepetesanepete 1,15211 silver badges33 bronze badges1 Answer
Reset to default 0You can put the css file below myawesomeapp.Shared\wwwroot\myawesomestylesheet.css.
And then you can load it in both App.razor file and the mobile index.html:
<link href="_content/myawesomeapp.Shared/myawesomestylesheet.css" rel="stylesheet"/>
版权声明:本文标题:c# - How might I share css files between both a MAUI Blazor mobile app and a Blazor web app? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744802724a2625961.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论