We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I tried to configure it using pipeline.CompileScssFiles(); or pipeline.CompileScssFiles(new WebOptimizerScssOptions { MinifyCss = true });.
pipeline.CompileScssFiles();
pipeline.CompileScssFiles(new WebOptimizerScssOptions { MinifyCss = true });
In my cshtml it is referenced as <link rel="stylesheet" href="~/css/monitoring.scss" type="text/css" />
<link rel="stylesheet" href="~/css/monitoring.scss" type="text/css" />
It's compiled and served correctly but the content is not minified.
I'm using version 3.0.91
The text was updated successfully, but these errors were encountered:
I'm experiencing a similar issue with a different method.
pipeline.AddScssBundle("/all.css", "someFile.css", "anotherFile.scss", "file3.scss")
The resulting all.css file does not see to be minified. It does appear that pipeline.AddJavaScriptBundle is minifying correctly.
I'm using version 3.0.91 as well.
Sorry, something went wrong.
No branches or pull requests
I tried to configure it using
pipeline.CompileScssFiles();
or
pipeline.CompileScssFiles(new WebOptimizerScssOptions { MinifyCss = true });
.In my cshtml it is referenced as
<link rel="stylesheet" href="~/css/monitoring.scss" type="text/css" />
It's compiled and served correctly but the content is not minified.
I'm using version 3.0.91
The text was updated successfully, but these errors were encountered: