编译 SCSS 文件时使用 --trace 进行回溯错误
use --trace for backtrace Error while compiling SCSS file
我正在努力
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的合集
您需要传递一个真实创建的文件:
# 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
祝你好运。
我正在努力
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的合集
您需要传递一个真实创建的文件:
# 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
祝你好运。