User348806598 posted
Hi,
If you are looking for adding individual scss file on every view, you can transpile each scss file into individual CSS file and you can try adding RenderSection for CSS in the layout page
<head>
<title>@ViewBag.Title</title>
@RenderSection("css", false)
</head>
And then in individual view, you can add the individual CSS file reference-
@section css {
<link href="@Url.Content("~/css/module.css")" rel="stylesheet"/>
}