报错Warning: Less failed to compile. Use --force to continue.

发布于 2022-09-02 01:34:45 字数 766 浏览 13 评论 0

在grunt里配置好sass后,启用grunt server时,报错Warning: Less failed to compile. Use --force to continue.

server.js里代码如下
// SCSS.

    "\.scss": function(buffer, req, res, next) {
      var less = require("grunt-lib-less").init(grunt);
      var contentType = "text/css";
      var opts = {
        paths: ["." + req.url.split("/").slice(0, -1).join("/") + "/"]
      };

      // Compile the source.
      less.compile(String(buffer), opts, function(contents) {
        res.header("Content-type", contentType);
        res.end(contents);
      });
    },

gruntfile里配置的如下

sass: {
    dist: {
            files: {
                'app/styles/style.css': 'app/styles/style.scss'
            }
        }
    },

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

拔了角的鹿 2022-09-09 01:34:45

什么鬼嘛?你用less编译sass?

阪姬 2022-09-09 01:34:45

现在已经解决问题,重新写了一个。利用node-sass,代码如下

function(buffer, req, res, next) {
                    var sass = require('node-sass');
                    var contentType = "text/css";
                    var opts = {
                        paths: ["." + req.url.split("/").slice(0, -1).join("/") + "/"]
                    };
                    // console.log(String(buffer));
                    sass.render({
                        data: String(buffer),
                        importer: function(url, prev, done) {
                            // url is the path in import as is, which LibSass encountered.
                            // prev is the previously resolved path.
                            // done is an optional callback, either consume it or return value synchronously.
                            // this.options contains this options hash, this.callback contains the node-style callback
                            var result = someSyncFunction(url, prev);
                            return {
                                file: result.path,
                                contents: result.data
                            };
                        },
                        includePaths: opts.paths,
                        outputStyle: 'compressed'
                    }, function(error, result) { // node-style callback from v3.0.0 onwards
                        if (error) {
                            console.log(error.status); // used to be "code" in v2x and below
                            console.log(error.column);
                            console.log(error.message);
                            console.log(error.line);
                        } else {
                            res.header("Content-type", contentType);
                            res.end(result.css.toString());
                        }
                    });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文