MapleStory
MapleStory

Reputation: 668

How to convert LESS to CSS automatically without IIS?

I am using .net core to try to map less file to css,but it always remind me 404 error. my project wasn't use IIS to startup. I tried to install nuget dotless plugin but I can not find bundles.cs in asp.net core project.

enter image description here

Upvotes: 2

Views: 1109

Answers (1)

Kyle McClellan
Kyle McClellan

Reputation: 993

LESS files need to be compiled into CSS as part of the build process. This is possible now in Visual Studio, though it requires some setting up. See here: https://learn.microsoft.com/en-us/aspnet/core/client-side/less-sass-fa

Upvotes: 1

Related Questions