我正在使用 PhpStorm 的 File Watcher 将 SCSS 转换为 CSS。在我的 SCSS 中,我有:
li {
&:before {
content: "•";
font-size: 85%;
padding-right: 5px;
}
}
但它转换为:
li:before {
content: "ÔÇó";
font-size: 85%;
padding-right: 5px;
}
如何配置它以正确转换?
(观察者C:\Ruby23-x64\bin\scss.bat
:)