提问人:in2d 提问时间:10/24/2022 最后编辑:sepp2kin2d 更新时间:10/24/2022 访问量:434
使用 node-sass 在压缩文件末尾添加 min.css 文件扩展名
Using node-sass to add min.css file extension in the end of compressed file
问:
我似乎不知道如何使用 node-sass 更改编译和压缩的文件扩展名。 现在我尝试了不同的变体,但它仍然将 scss 编译为 style.css 文件。
我试过这个
node-sass --watch scss -o dist --output-style compressed --out-file-extension .min.css
我也试过这个
node-sass --watch scss -o dist/style.min.css --output-style compressed
答:
0赞
in2d
10/24/2022
#1
我不知道如何使用 node-sass 做到这一点,所以我改用了 Sass。
我通过安装实现了我想要的结果
npm install sass --save-dev
并将其添加到我的package.json
sass --watch scss/style.scss:dist/style.min.css --style compressed
scss/style.scss 是我想要压缩的文件夹和文件,dist/style.min.css 是目标
如果您不想要 .map 文件,请添加此文件
--no-source-map
评论
0赞
alexkodr
11/5/2022
你知道如果保存到多个文件会怎么做吗?而不是将其编译成一个文件?我的意思是添加了.min后缀。
0赞
in2d
11/5/2022
不,我不熟悉
0赞
alexkodr
11/5/2022
我想出了怎么做。最后不得不使用大口大口。感谢您的回复。
评论