欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

webstrom配置less自动编译

程序员文章站 2022-03-16 17:31:03
...

一、安装nodejs;
二、使用npm安装less;(自行百度)
三、less在webstrom中的配置:
webstrom配置less自动编译
这是我自己的配置:
Program:

C:\Develop\nvm\npm\lessc.cmd

要引用nodejs目录下中的npm目录中的lessc.cmd,我是安装了nvm;

Arguments:

$FileName$
$FileParentDir$\css\$FileNameWithoutExtension$.css
--source-map

解释:

$FileParentDir$ : 获取 less 目录的路径
$FileDirPathFromParent(less)$ : 是获取 less 文件到 less 目录的路径
$FileNameWithoutExtension$ : 是获取 less 文件不带后缀的名字

所以会生成如下目录:
webstrom配置less自动编译

参考文献:
http://blog.csdn.net/a562550212/article/details/51777725

http://www.cnblogs.com/caiyuan9426/p/4663199.html

相关标签: less