在远程服务器上显示 LESS.js 错误

发布于 2024-12-04 15:21:35 字数 156 浏览 2 评论 0原文

我正在使用 LESS 的 JS 编译器在远程服务器上开发一个网站。

该编译器似乎只在本地查看站点时显示错误消息。但是,当从远程位置连接时,不会显示错误。

虽然我很理解这背后的原因,但我想知道 less.js 是否可以配置为始终显示其错误消息。

干杯!

I am developing a website on a remote server using the JS compiler for LESS.

This compiler seems to only display error messages when viewing the site locally. However, when connecting from a remote location the error is not displayed.

While I appreciate the reason behind this I am wondering if less.js can be configured to always display its error messages.

Cheers!

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

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

发布评论

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

评论(2

亢潮 2024-12-11 15:21:35

我刚刚查看了 less.js 文件,注意到错误消息的添加取决于 d.env 变量设置为“development”。再往下,如果 location.hostname 指示 localhost,则将该属性设置为“development”。通过将其更改为始终为真,错误将始终显示。

I just had a look in the less.js file and noticed that the adding of the error message depends on the d.env var being set to 'development'. Further down there's a bit that sets that property to 'development' if location.hostname indicates localhost. By changing this to always be true, errors will always display.

萝莉病 2024-12-11 15:21:35

搜索

0||f?"development":"development"),

并使其像

1||f?"development":"development"),

现在出现错误一样。
为我工作。

Search for

0||f?"development":"development"),

and make it like

1||f?"development":"development"),

Errors will now appear.
Worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文