1

我目前正在处理 SASS 编译器的问题。我已经开始使用 CSS 为 Wordpress 网站创建基本布局,但编译器 Prepros 不允许我编译文件。我担心它可能与 style.css 文件开头的注释块有关。如果您知道问题可能是什么,那就太好了。

风格.sass

/*
    Theme Name: Xtra Child
    Theme URI:  http://themeforest.net/user/Codevz/portfolio
    Description:Sample child theme of Xtra theme for customization.
    Author:     Codevz
    Author URI: http://themeforest.net/user/Codevz
    Template:   xtra
    Version:    1.0
*/


@import "global.sass" 

我从 Prepros 得到的错误日志:

如果你能给我一个关于如何解决这个问题的想法,那就太好了。感谢您的时间。:)

4

1 回答 1

3

试试这个:

/*Theme Name: Xtra Child
 *Theme URI:  http://themeforest.net/user/Codevz/portfolio
 *Description:Sample child theme of Xtra theme for customization.
 *Author:     Codevz
 *Author URI: http://themeforest.net/user/Codevz
 *Template: xtra
 *Version:    1.0 */

对于 SASS 注释,结束注释*/需要在最后一行,而不是在下面。希望这有效

于 2018-07-21T19:37:08.640 回答