我在目录styles.less
中有一个/Content/custom/styles.less
文件。
然后我在目录bootstrap.less
中有/Content/bootstrap/bootstrap.less
。
styles.less
导入引导程序:
/* bootstrap */
@import "../bootstrap/bootstrap.less";
/* style overrides */
@import "somefile.less"
我正在使用WebCompiler生成CSS以及较少的映射:
{
"compilers": {
"less": {
"autoPrefix": "",
"cssComb": "none",
"ieCompat": true,
"strictMath": false,
"strictUnits": false,
"relativeUrls": true,
"rootPath": "",
"sourceMapRoot": "",
"sourceMapBasePath": "",
"sourceMap": true
},
当我运行站点时,除了引导映射显示为http://localhost:1234/content/custom/C:/_path_/Content/bootstrap/scaffolding.less
我如何将地图设为http://localhost:1234/content/bootstrap/scaffolding.less
?