adding new css for server side rendering
I've started using the ASP Core Angular Universal starter pack at: https://github.com/MarkPieszak/aspnetcore-angular2-universal to create a SPA web app.
After downloading the application its starts up and does the server side rendering and injects css into the web page - so far so good. I have also purchased a bootstrap theme that I'm trying to build into the application and so need to add a lot more css files.
My question is how do I add new css files to the application? I'm not even sure how the bootstrap file gets sent to the browser so its not easy troubleshooting.
Other projects I've worked with create a merged css file but due to the server side rendering its all hidden away "under the hood".
Thanks for help.
链接地址: http://www.djcxy.com/p/31322.html上一篇: 你如何从npm定义一个自定义的角度模块?
下一篇: 为服务器端渲染添加新的CSS