CSS 在 SASS 上禁用地图文件

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/27777854/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-30 02:53:13  来源:igfitidea点击:

Disable map files on SASS

csssass

提问by supersize

I would like to know how I can prevent Sassfrom writing .mapfiles. I'm using Sass in a very basic setup:

我想知道如何防止Sass写入.map文件。我在一个非常基本的设置中使用 Sass:

sass --watch style.scss:style.css

what parameters do I have to add to avoid Sass to generate map files?

我必须添加哪些参数才能避免 Sass 生成地图文件?

回答by matewka

That depends on the implementation.

这取决于实现。

For node-sassand ruby-sasstry this:

对于node-sassruby-sass试试这个:

sass --sourcemap=none --watch style.scss:style.css


If you're using dart-sassthe usage is --no-source-map:

如果您使用的是dart-sass,则用法是--no-source-map

sass --no-source-map --watch style.scss:style.css

回答by Jaisa Ram

it's works:

其作品:

sass --watch --no-source-map input.scss output.css

with

1.8.0 compiled with dart2js 2.0.0-dev.66.0

1.8.0 用 dart2js 2.0.0-dev.66.0 编译

回答by Ahmed Kamal

I'm using sass version 1.13.2 compiled with dart2js 2.0.0on Ubuntuand it's sass --no-source-map --watch [source].scss:[target].css

我使用sass version 1.13.2 compiled with dart2js 2.0.0Ubuntu,它的sass --no-source-map --watch [source].scss:[target].css

as --source-mapenables source map and --no-source-mapdisables it.

as--source-map启用源映射并--no-source-map禁用它。

回答by Anatolii Pazhyn

Works:

作品:

sass --sourcemap=none style.scss style.css

Doesn't work, still generate .map file:

不起作用,仍然生成 .map 文件:

sass --update --sourcemap=none style.scss:style.css

So make sure you have no --updateflag

所以确保你没有--update标志