1

我正在尝试做

sass input src.scss test.css

或者

sass input src.scss:test.css

Both results in error::
Errno::ENONET:No such file or directory @ rb_sysopen - input

这是我的第一个 css 到 css 编译

4

1 回答 1

2

您需要传递一个真实创建的文件:

# cd my_path_with_file
sass example.scss example.css

或者您可以使用文件的绝对路径:

# output file will be saved in current directory
sass my_path/example.scss example.css

祝你好运。

于 2016-05-12T15:07:35.783 回答